Skip to content

Never trigger release process via UI, need to push tag by hand always #338

Never trigger release process via UI, need to push tag by hand always

Never trigger release process via UI, need to push tag by hand always #338

Workflow file for this run

name: Check
on:
pull_request:
push:
branches:
- 2.6.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@v2
with:
cmd: sbt validateCode
check-binary-compatibility:
name: Binary Compatibility
uses: playframework/.github/.github/workflows/binary-check.yml@v2
check-docs:
name: Docs
uses: playframework/.github/.github/workflows/cmd.yml@v2
with:
java: 11, 8
scala: 2.11.x, 2.12.x, 2.13.x
cmd: sbt ++$MATRIX_SCALA docs/test
tests:
name: Tests
needs:
- "check-code-style"
- "check-binary-compatibility"
- "check-docs"
uses: playframework/.github/.github/workflows/cmd.yml@v2
with:
java: 11, 8
scala: 2.11.x, 2.12.x, 2.13.x
cmd: sbt ++$MATRIX_SCALA publishLocal test # scapegoat
finish:
name: Finish
if: github.event_name == 'pull_request'
needs: # Should be last
- "tests"
uses: playframework/.github/.github/workflows/rtm.yml@v2