Merge pull request #663 from playframework/dependabot/maven/3.0.x/org… #834
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: | |
| pull_request: | |
| branches: | |
| - 3.0.x | |
| push: | |
| branches: | |
| - 3.0.x | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| java: [ '8', '11', '17', '21' ] | |
| os: [ 'ubuntu-latest' ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build | |
| run: mvn --no-transfer-progress -B clean package |