Upgrade CI to jdk 25 (#344) #743
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: CI | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: '25' | |
| distribution: 'temurin' | |
| - name: Build with Maven | |
| run: ./mvnw --batch-mode clean verify |