We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 494e2e5 commit a80fa99Copy full SHA for a80fa99
.github/workflows/coverage.yml
@@ -89,8 +89,8 @@ jobs:
89
total=$(lcov --summary coverage/lcov.info 2>&1 | grep "lines" | awk '{print $2}' | cut -d'%' -f1)
90
echo "Coverage: $total%"
91
92
- if (( $(echo "$total < 65" | bc -l) )); then
93
- echo "❌ Coverage below 65% threshold: $total%"
+ if (( $(echo "$total < 50" | bc -l) )); then
+ echo "❌ Coverage below 50% threshold: $total%"
94
exit 1
95
else
96
echo "✅ Coverage meets threshold: $total%"
0 commit comments