Skip to content

Commit f758f61

Browse files
Test on Java 8
1 parent 76abfd6 commit f758f61

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111
ci:
1212
runs-on: ubuntu-20.04
1313

14+
strategy:
15+
fail-fast: false
16+
17+
matrix:
18+
java: [8, 11]
19+
1420
steps:
1521
- name: checkout
1622
uses: actions/checkout@v2
@@ -19,7 +25,7 @@ jobs:
1925
uses: actions/setup-java@v2
2026
with:
2127
distribution: zulu
22-
java-version: 11
28+
java-version: ${{ matrix.java }}
2329

2430
- name: Install dependencies
2531
run: ./mvnw install -Dmaven.test.skip -Dinvoker.skip

0 commit comments

Comments
 (0)