build: install sbt explicitly

This commit is contained in:
2026-01-08 12:37:31 +02:00
parent af7a92af35
commit 8a37c66be8
2 changed files with 22 additions and 0 deletions

View File

@ -13,10 +13,20 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 18
- name: install sbt
uses: eclipse-score/apt-install@main
with:
packages: wget
- run: |
wget https://scala.jfrog.io/artifactory/debian/sbt-1.11.7.deb
dpkg -i sbt-1.11.7.deb
- name: run tests
run: make tests