Skip to content

Commit

Permalink
add java 21 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tanya732 committed Jan 3, 2025
1 parent 7965492 commit de23d8f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ on:
jobs:
gradle:
runs-on: ubuntu-latest

strategy:
matrix:
java-version: [11, 17, 21]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
java-version: ${{ matrix.java-version }}
- uses: gradle/gradle-build-action@a4cf152f482c7ca97ef56ead29bf08bcd953284c
with:
arguments: assemble apiDiff check jacocoTestReport --continue --console=plain
Expand Down

0 comments on commit de23d8f

Please # to comment.