File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155
155
if : github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'egil/Htmxor'
156
156
run : |
157
157
cd test/Htmxor.Tests
158
- dotnet stryker --config-file "../../stryker-config.json" --version ${{ env.BRANCH_NAME }} --output ${{ env.StrykerDirectory }}
158
+ dotnet stryker --config-file "../../stryker-config-no-dashboard .json" --version ${{ env.BRANCH_NAME }} --output ${{ env.StrykerDirectory }}
159
159
cat ${{ env.StrykerDirectory }}/reports/mutation-report.md >> $GITHUB_STEP_SUMMARY
160
160
161
161
- name : Stryker Report
Original file line number Diff line number Diff line change
1
+ {
2
+ "stryker-config" : {
3
+ "project" : " src/Htmxor/Htmxor.csproj" ,
4
+ "mutate" : [
5
+ " !**/System.*/*"
6
+ ],
7
+ "language-version" : " Preview" ,
8
+ "target-framework" : " net8.0" ,
9
+ "mutation-level" : " Complete" ,
10
+ "reporters" : [
11
+ " markdown" ,
12
+ " html"
13
+ ],
14
+ "thresholds" : {
15
+ "high" : 80 ,
16
+ "low" : 60 ,
17
+ "break" : 0
18
+ }
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments