Skip to content

Commit 5c17123

Browse files
Fix CI: install sbt before running tests
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1cedcd6 commit 5c17123

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,11 @@ jobs:
4747
distribution: temurin
4848
java-version: 17
4949
cache: sbt
50+
- name: Install sbt
51+
run: |
52+
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
53+
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add
54+
sudo apt-get update
55+
sudo apt-get install -y sbt
5056
- name: Run tests
5157
run: sbt "++${{ matrix.scala }}; tests/test"

0 commit comments

Comments
 (0)