Separated review from snapshot storage and opening diff viewer #99
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: JVM CI | |
| on: | |
| push: | |
| paths: | |
| - 'src/jvm/**' | |
| - '.github/workflows/jvm-ci.yml' | |
| pull_request: | |
| paths: | |
| - 'src/jvm/**' | |
| - '.github/workflows/jvm-ci.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| test-jdk: ['21', '26'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: | | |
| 21 | |
| 26 | |
| - uses: gradle/actions/setup-gradle@v6 | |
| - name: Build and test | |
| working-directory: src/jvm | |
| run: ./gradlew build -PtestJdk=${{ matrix.test-jdk }} |