Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisJehan committed Apr 3, 2024
1 parent 14cded9 commit 7ba40bb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
matrix:
distribution: ['temurin']
java-version: ['11', '16', '17', '18', '19', '20', '21']
java-version: ['11', '16', '17', '18', '19', '20', '21', '22']
include:
- distribution: 'adopt'
java-version: '12'
Expand All @@ -18,10 +18,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java-version }}
cache: maven
- run: mvn --batch-mode verify -Dgpg.skip
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 7ba40bb

Please sign in to comment.