We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779f38f commit 1248cd5Copy full SHA for 1248cd5
.github/workflows/main.yml
@@ -7,15 +7,19 @@ on:
7
jobs:
8
build-and-test:
9
runs-on: ubuntu-latest
10
-
11
steps:
12
- - uses: actions/checkout@v2
13
14
- - uses: olafurpg/setup-scala@v10
+ - uses: actions/setup-java@v5
15
with:
16
- java-version: openjdk@1.17.0
+ distribution: zulu
+ java-version: 21.0.2
+ java-package: jdk+fx
+ cache: sbt
17
+
18
+ - uses: sbt/setup-sbt@v1
19
20
- uses: r-lib/actions/setup-r@v2
21
- - run: sbt -v update compile
- - run: sbt -v test
22
+ - name: Build and Test
23
+ run: |
24
+ sbt -v update compile
25
+ sbt -v test
project/build.properties
@@ -1 +1 @@
1
-sbt.version=1.7.2
+sbt.version=1.10.1
0 commit comments