We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8d69a7 + f4e905c commit f534f41Copy full SHA for f534f41
1 file changed
.github/workflows/tests.yaml
@@ -22,6 +22,13 @@ jobs:
22
with:
23
name: junit
24
path: junit.xml
25
+ # displays in summary page
26
+ - name: Publish Test Report
27
+ uses: mikepenz/action-junit-report@v3
28
+ if: always() # always run even if the previous step fails
29
+ with:
30
+ report_paths: 'junit.xml'
31
+ # more in depth junit in console and annotations on failures
32
- uses: ashley-taylor/junit-report-annotations-action@1.3
33
if: always()
34
@@ -33,3 +40,9 @@ jobs:
40
41
name: Report-CodeCoverage
35
42
path: coverage
43
+ # adds coverage comment to pr
44
+ - name: parse coverage
45
+ uses: danhunsaker/clover-reporter-action@v0.2.17-clover
46
47
+ github-token: ${{ secrets.GITHUB_TOKEN }}
48
+ clover-file: ./coverage/clover.xml
0 commit comments