We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cedcd6 commit 5c17123Copy full SHA for 5c17123
.github/workflows/ci.yml
@@ -47,5 +47,11 @@ jobs:
47
distribution: temurin
48
java-version: 17
49
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
56
- name: Run tests
57
run: sbt "++${{ matrix.scala }}; tests/test"
0 commit comments