We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2de70f2 commit 6bf39c0Copy full SHA for 6bf39c0
.github/workflows/ci-release.yml
@@ -17,7 +17,9 @@ jobs:
17
distribution: temurin
18
java-version: 8
19
cache: sbt
20
- - run: ./sbt ci-release
+ - name: Setup sbt launcher
21
+ uses: sbt/setup-sbt@v1
22
+ - run: sbt ci-release
23
env:
24
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
25
PGP_SECRET: ${{ secrets.PGP_SECRET }}
.github/workflows/test.yml
@@ -41,15 +41,9 @@ jobs:
41
java-version: ${{ matrix.java }}
42
check-latest: true
43
cache: "sbt"
44
- - name: Restore cache
45
- uses: actions/cache@v4
46
- with:
47
- path: |
48
- ~/.sbt
49
- ~/.ivy2/cache
50
- ~/.cache/coursier
51
- key: cache-v1-${{ hashFiles('build.sbt') }}
52
- restore-keys: |
53
- cache-v1-
+
54
- name: Compile and Test
55
run: ./sbt ++${{ matrix.scala }} test
0 commit comments