Skip to content

Commit 8e6f426

Browse files
committed
Windows CI: add JDK 17 (alongside 8)
1 parent 80d9930 commit 8e6f426

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
runs-on: windows-latest
1515
strategy:
1616
fail-fast: false
17+
matrix:
18+
include:
19+
- java: 8
20+
- java: 17-ea
1721
steps:
1822
- run: git config --global core.autocrlf false
1923
- name: Checkout
@@ -26,7 +30,7 @@ jobs:
2630
uses: actions/setup-java@v2
2731
with:
2832
distribution: adopt
29-
java-version: 8
33+
java-version: ${{matrix.java}}
3034

3135
- name: Cache
3236
uses: actions/cache@v2

0 commit comments

Comments
 (0)