Skip to content

Commit 0fc7eb6

Browse files
authored
feat: add jdk 17 into the build matrix (#381)
1 parent 2f34ba2 commit 0fc7eb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
java: [ '8', '11' ]
16+
java: [ '8', '11', '17' ]
1717

1818
steps:
1919
- name: checkout the repo
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up JVM
2525
uses: actions/setup-java@v2
2626
with:
27-
distribution: 'adopt'
27+
distribution: 'temurin'
2828
java-version: ${{ matrix.java }}
2929

3030
- name: Run tests
@@ -42,8 +42,8 @@ jobs:
4242
- name: Set up JVM
4343
uses: actions/setup-java@v2
4444
with:
45-
distribution: 'adopt'
46-
java-version: '8'
45+
distribution: 'temurin'
46+
java-version: '17'
4747

4848
- name: Check Formatting
4949
run: sbt scalafmtCheckAll

0 commit comments

Comments
 (0)