chore: add Java 25 GH workflow matrices #38
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: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| format-check: | |
| runs-on: ubuntu-latest | |
| name: Check source code formatting | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - run: ./gradlew :sdk:checkFormat :examples:checkFormat --continue | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Java ${{ matrix.Java }} | |
| strategy: | |
| matrix: | |
| java: [ '11', '17', '21', '25' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '${{ matrix.java }}' | |
| # includes execution of unit tests | |
| - run: ./gradlew build --stacktrace |