We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808faeb commit 257cb5fCopy full SHA for 257cb5f
1 file changed
.github/workflows/tests.yaml
@@ -22,6 +22,11 @@ jobs:
22
with:
23
name: junit
24
path: junit.xml
25
+ - name: Publish Test Report
26
+ uses: mikepenz/action-junit-report@v3
27
+ if: always() # always run even if the previous step fails
28
+ with:
29
+ report_paths: 'junit.xml'
30
- uses: ashley-taylor/junit-report-annotations-action@1.3
31
if: always()
32
@@ -33,3 +38,8 @@ jobs:
33
38
34
39
name: Report-CodeCoverage
35
40
path: coverage
41
+ - name: parse coverage
42
+ uses: danhunsaker/clover-reporter-action@v0.2.17-clover
43
44
+ github-token: ${{ secrets.GITHUB_TOKEN }}
45
+ clover-file: ./coverage/clover.xml
0 commit comments