Skip to content

Commit

Permalink
Manually install sbt.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandtritsch committed Jan 24, 2025
1 parent 12eed6b commit 93fc644
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ jobs:
distribution: temurin
cache: sbt

- name: Install sbt
if: matrix.os == 'ubuntu-latest'
run: |
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x99E82A75642AC823" | sudo apt-key add
sudo apt-get update
sudo apt-get install sbt
- name: run tests
run: sbt generateXMLFiles test

Expand Down

0 comments on commit 93fc644

Please sign in to comment.