Skip to content

Commit 58a3569

Browse files
committed
Disabling direct publish of code cov results
1 parent c7f55cd commit 58a3569

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Run the tests for the project
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main, development" ]
66
pull_request:
77
branches: [ "main" ]
88

@@ -41,11 +41,11 @@ jobs:
4141
grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o ./target/debug/coverage
4242
grcov . -s . --binary-path ./target/debug/ -t cobertura --branch --ignore-not-existing -o ./target/debug/coverage/code_cov.xml
4343
44-
- name: Publish Test Results from XML
45-
uses: EnricoMi/publish-unit-test-result-action@v2
46-
if: always()
47-
with:
48-
junit_files: "./target/debug/coverage/code_cov.xml"
44+
# - name: Publish Test Results from XML
45+
# uses: EnricoMi/publish-unit-test-result-action@v2
46+
# if: always()
47+
# with:
48+
# junit_files: "./target/debug/coverage/code_cov.xml"
4949

5050
- name: Show me directories
5151
if: always()

0 commit comments

Comments
 (0)