Skip to content

Commit 15eafda

Browse files
committed
Add sbt installation step to CI
Github removed sbt from the ubuntu runner image therefore we need to add sbt installation step to CI.
1 parent d96a0ee commit 15eafda

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: .github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
uses: actions/setup-java@v1
1919
with:
2020
java-version: 11
21+
- name: Install sbt
22+
uses: sbt/setup-sbt@v1
2123
- name: Check Scala formatting
2224
if: ${{ always() }}
2325
run: sbt scalafmtCheckAll scalafmtSbtCheck
@@ -53,6 +55,8 @@ jobs:
5355
uses: actions/setup-java@v1
5456
with:
5557
java-version: 11
58+
- name: Install sbt
59+
uses: sbt/setup-sbt@v1
5660
- name: Get the latest Databricks JDBC driver
5761
run: |
5862
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

0 commit comments

Comments
 (0)