Skip to content

Commit f534f41

Browse files
authored
Merge pull request #10 from funktechno/f/lastlink
better test previews
2 parents d8d69a7 + f4e905c commit f534f41

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ jobs:
2222
with:
2323
name: junit
2424
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
2532
- uses: ashley-taylor/junit-report-annotations-action@1.3
2633
if: always()
2734
with:
@@ -33,3 +40,9 @@ jobs:
3340
with:
3441
name: Report-CodeCoverage
3542
path: coverage
43+
# adds coverage comment to pr
44+
- name: parse coverage
45+
uses: danhunsaker/clover-reporter-action@v0.2.17-clover
46+
with:
47+
github-token: ${{ secrets.GITHUB_TOKEN }}
48+
clover-file: ./coverage/clover.xml

0 commit comments

Comments
 (0)