Skip to content

Commit

Permalink
Add sbt installation step to CI
Browse files Browse the repository at this point in the history
Github removed sbt from the ubuntu runner image therefore we need to add sbt installation step to CI.
  • Loading branch information
spenes committed Oct 11, 2024
1 parent 608178b commit 8a82f30
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Check Scala formatting
run: sbt scalafmtCheckAll scalafmtSbtCheck
- name: Run tests
Expand All @@ -39,6 +41,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Docker login
uses: docker/login-action@v1
with:
Expand Down

0 comments on commit 8a82f30

Please sign in to comment.