Version bump to 0.7.0 in preparation for release #185
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| name: Java CI - test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [8, 11, 17] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup java | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: "zulu" | |
| java-version: ${{ matrix.java }} | |
| - name: Build with Maven | |
| run: > | |
| mvn install | |
| --define "skipTests=true" | |
| --define "mavin.javadoc.skip=true" | |
| --batch-mode | |
| --show-version | |
| --file duo-client/pom.xml | |
| - name: Test with Maven | |
| run: > | |
| mvn test | |
| --batch-mode | |
| -file duo-client/pom.xml | |
| - name: Lint with checkstyle | |
| run: mvn checkstyle:check |