Skip to content

Mutation testing

Mutation testing #2

name: Mutation testing
on:
schedule:
- cron: "17 3 * * 1"
workflow_dispatch:
permissions:
contents: read
jobs:
dbwriter:
name: DbWriter mutation testing
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
- name: Restore
run: dotnet restore CodeIndex.sln --locked-mode
- name: Install Stryker.NET
run: dotnet tool install --global dotnet-stryker
- name: Run DbWriter mutation tests
run: dotnet stryker --config-file stryker-config.json