Merge pull request #482 from scala-steward/update/7.x/sbt-ci-release-… #419
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: | |
- 7.x # 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: | |
check-code-style: | |
name: Code Style | |
uses: playframework/.github/.github/workflows/cmd.yml@v3 | |
with: | |
cmd: sbt validateCode | |
check-binary-compatibility: | |
name: Binary Compatibility | |
uses: playframework/.github/.github/workflows/binary-check.yml@v3 | |
check-docs: | |
name: Docs | |
uses: playframework/.github/.github/workflows/cmd.yml@v3 | |
with: | |
java: 17, 11 | |
scala: 2.13.x, 3.x | |
cmd: cd docs && sbt ++$MATRIX_SCALA validateCode | |
tests: | |
name: Tests | |
needs: | |
- "check-code-style" | |
- "check-binary-compatibility" | |
- "check-docs" | |
uses: playframework/.github/.github/workflows/cmd.yml@v3 | |
with: | |
java: 17, 11 | |
scala: 2.13.x, 3.x | |
cmd: >- | |
sbt ++$MATRIX_SCALA test | |
scripted-tests: | |
name: Scripted tests | |
needs: | |
- "check-code-style" | |
- "check-binary-compatibility" | |
- "check-docs" | |
uses: playframework/.github/.github/workflows/cmd.yml@v3 | |
with: | |
java: 17, 11 | |
scala: 2.13.14, 3.3.3 | |
cmd: >- | |
sbt " | |
+publishLocal; | |
set plugin/scriptedLaunchOpts += \"-Dscala.version=$MATRIX_SCALA\"; | |
show scriptedSbt; | |
show scriptedLaunchOpts; | |
plugin/scripted; | |
" | |
finish: | |
name: Finish | |
if: github.event_name == 'pull_request' | |
needs: # Should be last | |
- "tests" | |
- "scripted-tests" | |
uses: playframework/.github/.github/workflows/rtm.yml@v3 |