build(deps): update munit from 1.2.4 to 1.3.0 (#1970) #1624
This file contains hidden or 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: mutation testing | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - test/** | |
| jobs: | |
| core: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Fetch all commits, used by sbt-dynver plugin to determine version | |
| fetch-depth: 0 | |
| - uses: ./.github/setup | |
| - name: Run Stryker4s | |
| run: sbt 'project core; stryker --reporters console --reporters dashboard' | |
| env: | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| command-runner: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Fetch all commits, used by sbt-dynver plugin to determine version | |
| fetch-depth: 0 | |
| - uses: ./.github/setup | |
| - name: Run Stryker4s | |
| run: sbt 'project commandRunner; stryker --reporters console --reporters dashboard' | |
| env: | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
| maven-plugin: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Fetch all commits, used by sbt-dynver plugin to determine version | |
| fetch-depth: 0 | |
| - uses: coursier/cache-action@90c37294538be80a558fd665531fcdc2b467b475 # v8.1.0 | |
| - uses: ./.github/setup | |
| with: | |
| cache: 'maven' | |
| - name: Publish Stryker4s maven deps locally | |
| run: sbt 'publishM2Local' | |
| - name: Run Stryker4s | |
| run: | | |
| cd maven | |
| mvn -B --no-transfer-progress stryker4s:run | |
| env: | |
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} |