We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a79017 commit a290bc0Copy full SHA for a290bc0
.github/workflows/scala.yml
@@ -8,16 +8,15 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v2
16
- - name: Set up JDK 16
17
- uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - name: Set up JDK 17
+ uses: actions/setup-java@v3
18
with:
19
- java-version: '16'
20
- distribution: 'adopt'
+ java-version: '17'
+ distribution: 'temurin'
+ cache: 'sbt'
21
- name: Run tests for Scala 3
22
run: sbt test
23
- name: Run tests for Scala 2.13
0 commit comments