-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from mkurz/update_ci_conf
Make use of reusable workflow
- Loading branch information
Showing
3 changed files
with
44 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- 2.8.x | ||
pull_request: | ||
|
||
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/sbt-matrix.yml@v1 | ||
with: # Should be sync with Mergify conditions (.mergify.yml) | ||
java: >- | ||
[ "17", "11", "8" ] | ||
scala: >- | ||
[ "2.12.15", "2.13.8" ] | ||
cmd: sbt ++$SCALA_VERSION test |
This file was deleted.
Oops, something went wrong.
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