We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61acb7 commit 8f80f26Copy full SHA for 8f80f26
1 file changed
.github/workflows/mutation.yml
@@ -0,0 +1,23 @@
1
+name: Run Stryker.NET with Dashboard Reporting
2
+
3
+on:
4
+ schedule:
5
+ # Change the cron expression to your desired schedule. This example runs every Monday and Thursday at 2 AM.
6
+ - cron: '0 2 * * MON,THU'
7
8
+ workflow_dispatch:
9
+ inputs:
10
+ configurationFile:
11
+ description: 'Path to the Stryker configuration file'
12
+ required: false
13
+ default: 'stryker-config.json'
14
15
+jobs:
16
+ all:
17
+ if: github.run_id != 1
18
+ name: Run Stryker.NET Mutation Testing
19
+ uses: dailydevops/pipelines/.github/workflows/mutation-dotnet.yml@7462ba51bbbb5e45a6d418b990ad4fd319e1c067 # 2.4.1
20
+ with:
21
+ configurationFile: ${{ inputs.configurationFile || 'stryker-config.json' }}
22
+ secrets: inherit
23
0 commit comments