Skip to content

Commit

Permalink
chore: test on JDK 11, 17 and 21
Browse files Browse the repository at this point in the history
  • Loading branch information
celcius112 committed Nov 6, 2023
1 parent 305fd02 commit cac2513
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 11, 17, 21 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 11
java-version: ${{ matrix.java }}
cache: "gradle"
- name: Build
run: ./gradlew build jacocoTestReport --no-daemon

0 comments on commit cac2513

Please sign in to comment.