Skip to content

Commit

Permalink
Updating publishing unit tests in yaml files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Oct 24, 2023
1 parent b4027c9 commit ab52c83
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: junit/test-*.xml
comment_mode: update last
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json
- name: CodeCov
uses: codecov/[email protected]
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
- name: Publish unit test results
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: always()
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json
with:
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json
6 changes: 4 additions & 2 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,7 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: always()
with:
files: junit/test-*.xml
comment_mode: update last
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json

0 comments on commit ab52c83

Please sign in to comment.