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 4e732e0 commit ed84436Copy full SHA for ed84436
.github/workflows/pr-check.yml
@@ -47,10 +47,9 @@ jobs:
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
49
50
- - name: Archive build and test reports 🗃️
51
- uses: actions/upload-artifact@v4
52
- if: success() || failure()
+ - name: Publish Test Results
+ uses: EnricoMi/publish-unit-test-result-action@v2
+ if: always()
53
with:
54
- name: test-results
55
- path: ./**/build/test-results/test/*.xml
56
- retention-days: 7
+ files: |
+ build/test-results/test/*.xml
.github/workflows/test-report.yml
0 commit comments