We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77bdd87 commit 329d120Copy full SHA for 329d120
1 file changed
.github/workflows/_unit_tests.yml
@@ -47,10 +47,20 @@ jobs:
47
with:
48
paths: artifacts/test-results/**/results.xml
49
50
+ -
51
+ name: Upload Coverage
52
+ uses: codecov/codecov-action@v5
53
+ if: success() && github.event_name != 'pull_request' && github.repository_owner == 'GitTools' && github.ref_name == 'main' && matrix.dotnet_version == '10.0'
54
+ with:
55
+ files: artifacts/test-results/**/results.xml
56
+ report_type: 'test_results'
57
+ use_oidc: true
58
+
59
-
60
name: Upload Coverage
61
uses: codecov/codecov-action@v5
62
if: success() && github.event_name != 'pull_request' && github.repository_owner == 'GitTools' && github.ref_name == 'main' && matrix.dotnet_version == '10.0'
63
64
directory: artifacts/test-results
65
+ report_type: 'coverage'
66
use_oidc: true
0 commit comments