Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Merge pull request #254 from mkurz/Xmigration #105

Merge pull request #254 from mkurz/Xmigration

Merge pull request #254 from mkurz/Xmigration #105

Workflow file for this run

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@v3
with:
java: 17, 11
scala: 2.12.x
env: |
BUILD_REASON=IndividualCI
PGP_SECRET=Zm9v
CI_COMMIT_TAG=foo
cmd: sbt ++$MATRIX_SCALA "test ; publishLocal ; scripted"
finish:
name: Finish
if: github.event_name == 'pull_request'
needs: # Should be last
- "tests"
uses: playframework/.github/.github/workflows/rtm.yml@v3