Skip to content

Commit

Permalink
update workflows to add sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinovega committed Jan 10, 2025
1 parent d65abca commit 5a163b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/front-office-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
distribution: 'temurin'
java-version: '21'
# install node lts
- uses: sbt/setup-sbt@v1
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.2.0
- uses: actions/checkout@v4
# setup java to use sbt (?)
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- uses: sbt/setup-sbt@v1
- uses: coursier/cache-action@v5
# install node lts
- name: setup node
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2.2.0
- uses: actions/checkout@v4
# setup java to use sbt
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- uses: sbt/setup-sbt@v1
#test DK
- uses: coursier/cache-action@v6
- name: test
Expand Down

0 comments on commit 5a163b5

Please sign in to comment.