Skip to content

Commit

Permalink
fix: use latest stryker.net version (#497)
Browse files Browse the repository at this point in the history
Use the latest
[`dotnet-stryker`](https://www.nuget.org/packages/dotnet-stryker)
version (currently v4.0.1)
  • Loading branch information
vbreuss authored Mar 16, 2024
1 parent 9aa3722 commit aa6ea08
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 26 deletions.
7 changes: 1 addition & 6 deletions .github/stryker/Stryker.Config.AccessControl.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@
"./Testably.Abstractions.AccessControl.Tests/Testably.Abstractions.AccessControl.Tests.csproj"
],
"project": "Testably.Abstractions.AccessControl.csproj",
"target-framework": "net7.0",
"since": {
"ignore-changes-in": [
"**/.github/**/*.*"
]
},
"target-framework": "net8.0",
"reporters": [
"html",
"progress",
Expand Down
7 changes: 1 addition & 6 deletions .github/stryker/Stryker.Config.Compression.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@
"./Testably.Abstractions.Compression.Tests/Testably.Abstractions.Compression.Tests.csproj"
],
"project": "Testably.Abstractions.Compression.csproj",
"target-framework": "net7.0",
"since": {
"ignore-changes-in": [
"**/.github/**/*.*"
]
},
"target-framework": "net8.0",
"reporters": [
"html",
"progress",
Expand Down
7 changes: 1 addition & 6 deletions .github/stryker/Stryker.Config.Testing.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@
"./Testably.Abstractions.Testing.Tests/Testably.Abstractions.Testing.Tests.csproj"
],
"project": "Testably.Abstractions.Testing.csproj",
"target-framework": "net7.0",
"since": {
"ignore-changes-in": [
"**/.github/**/*.*"
]
},
"target-framework": "net8.0",
"reporters": [
"html",
"progress",
Expand Down
7 changes: 1 addition & 6 deletions .github/stryker/Stryker.Config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@
"./Testably.Abstractions.Testing.Tests/Testably.Abstractions.Testing.Tests.csproj"
],
"project": "Testably.Abstractions.csproj",
"target-framework": "net7.0",
"since": {
"ignore-changes-in": [
"**/.github/**/*.*"
]
},
"target-framework": "net8.0",
"reporters": [
"html",
"progress",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stryker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install .NET Stryker
shell: bash
run: |
dotnet tool install dotnet-stryker --tool-path ../tools --version 3.7.1
dotnet tool install dotnet-stryker --tool-path ../tools
- name: Analyze Testably.Abstractions.Testing
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Install .NET Stryker
shell: bash
run: |
dotnet tool install dotnet-stryker --tool-path ../tools --version 3.7.1
dotnet tool install dotnet-stryker --tool-path ../tools
- name: Analyze Testably.Abstractions
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
Expand Down

0 comments on commit aa6ea08

Please sign in to comment.