Skip to content

Commit 24849f2

Browse files
Update workflow (#343)
1 parent 2067e06 commit 24849f2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
SCALA: [2.12.16, 2.13.6]
16+
SCALA_VERSION: ["2.12.16", "2.13.6"]
1717
steps:
1818
- uses: actions/checkout@v3
1919
- uses: coursier/cache-action@v6
20-
- uses: laughedelic/coursier-setup@v1
20+
- uses: coursier/setup-action@v1.2.0
2121
with:
2222
jvm: 8
23-
apps: sbt-launcher
24-
- run: sbt ++$SCALA_VERSION test mimaReportBinaryIssues
23+
- run: |
24+
sbtn ++$SCALA_VERSION test
25+
sbtn ++$SCALA_VERSION mimaReportBinaryIssues
2526
env:
2627
SCALA_VERSION: ${{ matrix.SCALA_VERSION }}
2728
@@ -32,12 +33,11 @@ jobs:
3233
steps:
3334
- uses: actions/checkout@v3
3435
- uses: coursier/cache-action@v6
35-
- uses: laughedelic/coursier-setup@v1
36+
- uses: coursier/setup-action@v1.2.0
3637
with:
3738
jvm: 8
38-
apps: sbt-launcher
3939
- name: Release
40-
run: sbt ci-release
40+
run: sbtn ci-release
4141
env:
4242
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
4343
PGP_SECRET: ${{ secrets.PGP_SECRET }}

0 commit comments

Comments
 (0)