Skip to content

Commit

Permalink
Add Java 17 build test to GitHub action (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed Oct 11, 2022
1 parent 3885fb0 commit 681da2d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -54,3 +54,18 @@ jobs:
restore-keys: ${{ runner.os }}-jdk8-
- name: Test
run: ./sbt test
test_jdk17:
name: test jdk17
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: olafurpg/setup-scala@v10
with:
java-version: 17
- uses: actions/cache@v1
with:
path: ~/.cache
key: ${{ runner.os }}-jdk17-${{ hashFiles('**/*.sbt') }}
restore-keys: ${{ runner.os }}-jdk17-
- name: Test
run: ./sbt test

0 comments on commit 681da2d

Please sign in to comment.