Fix publish workflow: Ubuntu 24.0.4 does not come with sbt anymore #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check | |
on: | |
pull_request: | |
push: | |
branches: | |
- main # Check branch after merge | |
concurrency: | |
# Only run once for latest commit per ref and cancel other (previous) runs. | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Tests | |
uses: playframework/.github/.github/workflows/cmd.yml@v4 | |
with: | |
java: 21, 17 | |
scala: 2.13.x, 3.x | |
cmd: | | |
sbt ++$MATRIX_SCALA test | |
finish: | |
name: Finish | |
if: github.event_name == 'pull_request' | |
needs: # Should be last | |
- "tests" | |
uses: playframework/.github/.github/workflows/rtm.yml@v4 |