We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 581f7ac commit f4e905cCopy full SHA for f4e905c
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,6 +40,7 @@ jobs:
40
41
name: Report-CodeCoverage
35
42
path: coverage
43
+ # adds coverage comment to pr
36
44
- name: parse coverage
37
45
uses: danhunsaker/clover-reporter-action@v0.2.17-clover
38
46
0 commit comments