Skip to content

Update sbt-mima-plugin to 1.1.3 #127

Update sbt-mima-plugin to 1.1.3

Update sbt-mima-plugin to 1.1.3 #127

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:
# 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:
cmd: sbt doc
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
# Test sample applications
sbt ++$MATRIX_SCALA publishLocal
pushd samples/compile-timeDI/ && sbt ++$MATRIX_SCALA test && popd
pushd samples/runtimeDI/ && sbt ++$MATRIX_SCALA test && popd
finish:
name: Finish
if: github.event_name == 'pull_request'
needs: # Should be last
- "tests"
uses: playframework/.github/.github/workflows/rtm.yml@v3