Skip to content

Commit

Permalink
Install sbt in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexBenny committed Jan 23, 2025
1 parent bf55b6a commit 2df6af2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Run tests
run: sbt +test
- name: Check Scala formatting
Expand All @@ -52,6 +54,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Get current version
id: ver
run: echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
Expand Down Expand Up @@ -80,6 +84,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Docker login
run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
env:
Expand Down

0 comments on commit 2df6af2

Please sign in to comment.