Skip to content

Merge branch 'steps/05-approve-everything' into steps/06-properties #29

Merge branch 'steps/05-approve-everything' into steps/06-properties

Merge branch 'steps/05-approve-everything' into steps/06-properties #29

Workflow file for this run

name: Java CI
on:
push:
branches:
- main
- steps/01-gather-metrics
- steps/02-treat-warnings-as-errors
- steps/03-kill-mutants
- steps/04-improve-tests-readability
- steps/05-approve-everything
- steps/06-properties
- steps/07-architecture-tests
- steps/08-use-cases
- steps/09-tell-dont-ask
- steps/10-commands
- steps/11-avoid-exceptions
- steps/12-event-sourcing
jobs:
build:
name: Build
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'zulu'
- name: Build and Test
working-directory: ./java
run: mvn test