We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6759e78 commit 4bc0aa3Copy full SHA for 4bc0aa3
.github/workflows/continuous-integration.yml
@@ -76,7 +76,7 @@ jobs:
76
run: |
77
cd tests
78
dotnet tool restore
79
- dotnet tool run dotnet-stryker --reporter dashboard --version ${GITHUB_REF#refs/heads/} --dashboard-api-key ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
+ dotnet tool run dotnet-stryker --version ${GITHUB_REF#refs/heads/} --dashboard-api-key ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
80
- name: Create NuGet package
81
run: dotnet pack --no-build --output .
82
id: dotnet-pack
tests/stryker-config.json
@@ -0,0 +1,14 @@
1
+{
2
+ "stryker-config" : {
3
+ "baseline" : {
4
+ "enabled" : true
5
+ },
6
+ "reporters" : [
7
+ "dashboard",
8
+ "baseline"
9
+ ],
10
+ "since" : {
11
+ "target" : "main"
12
+ }
13
14
+}
0 commit comments