Skip to content

Commit 44f881e

Browse files
committed
Add sbt installation step to CI (#127)
Github removed sbt from the ubuntu runner image therefore we need to add sbt installation step to CI.
1 parent 6973cfe commit 44f881e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
java-version: 11
2121

22+
- name: Install sbt
23+
uses: sbt/setup-sbt@v1
24+
2225
- name: Run tests
2326
run: sbt coverage +test
2427

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: coursier/cache-action@v6
1414

15+
- name: Install sbt
16+
uses: sbt/setup-sbt@v1
17+
1518
- name: Make site
1619
run: sbt makeSite
1720

0 commit comments

Comments
 (0)