Run Stryker.NET with Dashboard Reporting #6
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: Run Stryker.NET with Dashboard Reporting | |
| on: | |
| schedule: | |
| # Change the cron expression to your desired schedule. This example runs every Monday and Thursday at 2 AM. | |
| - cron: '0 2 * * MON,THU' | |
| timezone: 'Europe/Berlin' | |
| workflow_dispatch: | |
| inputs: | |
| configurationFile: | |
| description: 'Path to the Stryker configuration file' | |
| required: false | |
| default: 'stryker-config.json' | |
| jobs: | |
| all: | |
| if: github.run_id != 1 | |
| name: Run Stryker.NET Mutation Testing | |
| uses: dailydevops/pipelines/.github/workflows/mutation-dotnet.yml@1acd2ca40debe423847625cdb537f5cee3b14b43 # 2.5.1 | |
| with: | |
| configurationFile: ${{ inputs.configurationFile || 'stryker-config.json' }} | |
| secrets: inherit | |