Skip to content

Commit

Permalink
Update workflows to install sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
peel committed Nov 19, 2024
1 parent 9397982 commit 7f38677
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/cookieless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Publish Docker image
run: sbt 'project stdout; set Docker / version := "0.0.0"' docker:publishLocal
- name: Run Docker image
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Build artifacts
run: |
sbt 'project kafka' assembly
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/telemetryIntegTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Set up python
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -41,4 +43,4 @@ jobs:
pip install requests
python3 .github/workflows/integration_tests/telemetry/verify_micro_content.py
- name: clean up
run: docker stop micro
run: docker stop micro
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
- name: Install sbt
uses: sbt/setup-sbt@v1
- name: Check formatting
run: sbt scalafmtCheckAll
- name: Run unit tests
Expand Down

0 comments on commit 7f38677

Please sign in to comment.