Skip to content

Commit 8f80f26

Browse files
committed
chore(template): sync with dailydevops/template-dotnet [skip ci]
1 parent c61acb7 commit 8f80f26

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/mutation.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)