Skip to content

Commit b34dc80

Browse files
authored
run gh action with more jdk (#111)
Signed-off-by: Olivier Lamy <olamy@apache.org>
1 parent a8d3a57 commit b34dc80

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/maven.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
strategy:
2525
matrix:
2626
os: [ubuntu-latest, windows-latest, macOS-latest]
27+
java: [8, 11, 16, 17-ea]
28+
jdk: [adopt, zulu]
2729
fail-fast: false
2830

2931
runs-on: ${{ matrix.os }}
@@ -43,8 +45,8 @@ jobs:
4345
- name: Set up JDK 1.8
4446
uses: actions/setup-java@v2
4547
with:
46-
java-version: '8'
47-
distribution: 'adopt'
48+
distribution: ${{ matrix.jdk }}
49+
java-version: ${{ matrix.java }}
4850

4951
- name: Build with Maven
5052
run: mvn clean verify -P run-its -e -B -V

0 commit comments

Comments
 (0)