Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit 8752dca

Browse files
authored
expand tests to include JDK15
1 parent 8583ddf commit 8752dca

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/java_ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@ jobs:
88
build:
99
name: Build
1010
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
jdk: [11, 15]
14+
fail-fast: false
1115
steps:
1216
- name: 📦 Prepate Git Repo
1317
uses: actions/checkout@v2
1418

1519
- name: ☕ Install OpenJDK
1620
uses: AdoptOpenJDK/install-jdk@v1
1721
with:
18-
version: '11'
22+
version: '${{ matrix.jdk }}'
1923
architecture: x64
2024

2125
- name: ✔ Test with Maven
22-
run: mvn test -fae
26+
run: mvn test -fae

0 commit comments

Comments
 (0)