Skip to content

Commit 7d72e04

Browse files
authored
Add JDK16 test (#619)
1 parent 3023dac commit 7d72e04

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

+15
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,18 @@ jobs:
5151
restore-keys: ${{ runner.os }}-jdk8-
5252
- name: Test
5353
run: mvn test
54+
test_jdk16:
55+
name: test jdk16
56+
runs-on: ubuntu-latest
57+
steps:
58+
- uses: actions/checkout@v2
59+
- uses: actions/setup-java@v1
60+
with:
61+
java-version: 16
62+
- uses: actions/cache@v1
63+
with:
64+
path: ~/.cache
65+
key: ${{ runner.os }}-jdk8-${{ hashFiles('**/*.sbt') }}
66+
restore-keys: ${{ runner.os }}-jdk8-
67+
- name: Test
68+
run: mvn test

0 commit comments

Comments
 (0)