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 7ed87d1 commit 87ffb39Copy full SHA for 87ffb39
.github/workflows/on-push.yml
@@ -40,9 +40,14 @@ jobs:
40
41
- name: Restore test dependencies
42
run: dotnet restore
43
-
44
- - name: Run tests
45
- run: dotnet test -c ${{ matrix.configuration }} -f ${{ matrix.testtarget }} --no-restore --collect="XPlat Code Coverage"
+
+ - name: Run tests (Debug)
+ if: ${{ matrix.configuration == 'debug' }}
46
+ run: dotnet test -c debug -f ${{ matrix.testtarget }} --no-restore
47
48
+ - name: Run tests (Release)
49
+ if: ${{ matrix.configuration == 'release' }}
50
+ run: dotnet test -c release -f ${{ matrix.testtarget }} --no-restore --collect="XPlat Code Coverage"
51
52
- name: Upload coverage to Codecov
53
uses: codecov/[email protected]
0 commit comments