generated from dailydevops/template-dotnet
-
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (20 loc) · 739 Bytes
/
mutation.yml
File metadata and controls
24 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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@7462ba51bbbb5e45a6d418b990ad4fd319e1c067 # 2.4.1
with:
configurationFile: ${{ inputs.configurationFile || 'stryker-config.json' }}
secrets: inherit