Skip to content

Run Stryker.NET with Dashboard Reporting #6

Run Stryker.NET with Dashboard Reporting

Run Stryker.NET with Dashboard Reporting #6

Workflow file for this run

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