We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74c773 commit d6dcc05Copy full SHA for d6dcc05
.github/workflows/makefile.yml
@@ -28,9 +28,23 @@ jobs:
28
- name: Build & Test
29
run: make all
30
31
- - name: Create test summary
32
- uses: test-summary/action@dist
+ - name: Code Coverage Report
+ uses: irongut/[email protected]
33
with:
34
- paths: test-results/**/*.xml
35
- if: always()
+ filename: test-results/**/*.xml
+ badge: true
36
+ fail_below_min: true
37
+ format: markdown
38
+ hide_branch_rate: false
39
+ hide_complexity: true
40
+ indicators: true
41
+ output: both
42
+ thresholds: '60 80'
43
+
44
+ - name: Add Coverage PR Comment
45
+ uses: marocchino/sticky-pull-request-comment@v2
46
+ if: github.event_name == 'pull_request'
47
+ with:
48
+ recreate: true
49
+ path: code-coverage-results.md
50
0 commit comments