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 Dec 13, 2024
1 parent d96a0ee commit 15eafda
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 @@ -18,6 +18,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Check Scala formatting
if: ${{ always() }}
run: sbt scalafmtCheckAll scalafmtSbtCheck
Expand Down Expand Up @@ -53,6 +55,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Get the latest Databricks JDBC driver
run: |
curl https://databricks-bi-artifacts.s3.us-east-2.amazonaws.com/simbaspark-drivers/jdbc/2.6.40/DatabricksJDBC42-2.6.40.1070.zip --output DatabricksJDBC42.jar.zip
Expand Down

0 comments on commit 15eafda

Please sign in to comment.