Skip to content

Commit 15f1325

Browse files
committed
Fix --fail-under
1 parent 3ae20e0 commit 15f1325

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ jobs:
178178
ls -aR .coverage*
179179
coverage combine .coverage*
180180
echo "Creating coverage report..."
181-
# Write markdown report to job summary
182-
coverage report --format=markdown -m >> "$GITHUB_STEP_SUMMARY"
183181
# Create xml file for further processing; Create even if below minimum
184182
coverage xml --fail-under=0
183+
# Write markdown report to job summary
184+
coverage report --fail-under=0 --format=markdown -m >> "$GITHUB_STEP_SUMMARY"
185185
186186
# For future use in case we want to add a PR comment for 3rd party PRs which requires
187187
# a workflow with elevated PR write permissions. Move below steps into a separate job.

0 commit comments

Comments
 (0)