Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
egreiner committed Sep 30, 2024
2 parents 90a820a + de903d6 commit 8139f93
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ jobs:
run: dotnet build --configuration Release --no-restore /p:TreatWarningsAsErrors=false

- name: 'Test project'
run: dotnet test --no-restore --verbosity normal
run: dotnet test --no-restore --verbosity normal


29 changes: 29 additions & 0 deletions .github/workflows/stryker-mutation-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: stryker-mutation-tests

on: [workflow_dispatch, push]

jobs:
mutation-test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0' # Set the .NET version you're using

- name: Install Stryker Globally
run: dotnet tool install -g dotnet-stryker

- name: Run Stryker Mutation Tests
run: dotnet stryker --solution IegTools.Sequencer.sln --project tests/UnitTests.Sequencer/ --break-at 80

- name: Upload Stryker HTML Report
uses: actions/upload-artifact@v3
with:
name: html-report
path: tests/UnitTests.Sequencer/StrykerOutput/**/*.html

0 comments on commit 8139f93

Please sign in to comment.