We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7078342 commit 56faf0fCopy full SHA for 56faf0f
.github/workflows/ci.yml
@@ -178,3 +178,24 @@ jobs:
178
# add -i to ignore parsed code of temp files.
179
coverage report -i
180
coverage xml -i
181
+
182
+ - name: Code Coverage Report
183
+ uses: irongut/CodeCoverageSummary@v1.3.0
184
+ with:
185
+ # Alternatively use one file per python version
186
+ filename: coverage.xml
187
+ badge: true
188
+ fail_below_min: false
189
+ format: markdown
190
+ hide_branch_rate: false
191
+ hide_complexity: true
192
+ indicators: true
193
+ output: both
194
+ thresholds: '80 90'
195
196
+ - name: Add Coverage PR Comment
197
+ uses: marocchino/sticky-pull-request-comment@v2
198
+ if: github.event_name == 'pull_request'
199
200
+ recreate: true
201
+ path: code-coverage-results.md
0 commit comments