Skip to content

Commit

Permalink
Add GitHub dependencies CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Jan 5, 2025
1 parent 326a6c8 commit ad240bb
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/sbt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:

jobs:
test:

runs-on: ubuntu-latest

steps:
Expand All @@ -20,3 +19,19 @@ jobs:
- uses: sbt/setup-sbt@v1
- name: Test with SBT
run: sbt test

deps:
# if: github.head_ref == 'master'

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'sbt'
- uses: sbt/setup-sbt@v1
- uses: scalacenter/sbt-dependency-submission@v2

0 comments on commit ad240bb

Please sign in to comment.