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 51343ec commit 25a1688Copy full SHA for 25a1688
.github/workflows/build-test.yml
@@ -65,8 +65,15 @@ jobs:
65
run: dotnet test -c debug -f ${{ matrix.target }} --no-restore
66
67
- name: Run tests (Release)
68
+ # Only upload code coverage for windows in an attempt to fix the broken code coverage
69
+ if: ${{ matrix.os == 'windows' }}
70
run: dotnet test -c release -f ${{ matrix.target }} --no-restore --collect="XPlat Code Coverage"
71
72
+ - name: Run tests with coverage (Release)
73
74
+ if: ${{ matrix.os != 'windows' }}
75
+ run: dotnet test -c release -f ${{ matrix.target }} --no-restore
76
+
77
- name: Upload coverage to Codecov
78
uses: codecov/[email protected]
79
0 commit comments