Skip to content

Commit 3f4f716

Browse files
committed
Merge branch 'github-deps'
2 parents 326a6c8 + ad240bb commit 3f4f716

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/sbt.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66

77
jobs:
88
test:
9-
109
runs-on: ubuntu-latest
1110

1211
steps:
@@ -20,3 +19,19 @@ jobs:
2019
- uses: sbt/setup-sbt@v1
2120
- name: Test with SBT
2221
run: sbt test
22+
23+
deps:
24+
if: github.ref == 'refs/heads/master'
25+
26+
runs-on: ubuntu-latest
27+
28+
steps:
29+
- uses: actions/checkout@v4
30+
- name: Set up JDK 21
31+
uses: actions/setup-java@v4
32+
with:
33+
distribution: 'zulu'
34+
java-version: '21'
35+
cache: 'sbt'
36+
- uses: sbt/setup-sbt@v1
37+
- uses: scalacenter/sbt-dependency-submission@v2

0 commit comments

Comments
 (0)