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 4c66db2 commit a1eda78Copy full SHA for a1eda78
.github/workflows/prCheck.yml
@@ -87,9 +87,9 @@ jobs:
87
run: |
88
BRANCH_COVERAGE=$(cat coverage.txt)
89
echo "Branch Coverage: $BRANCH_COVERAGE%"
90
- if (( $(echo "$BRANCH_COVERAGE < 84" | bc -l) )); then
91
- echo "Coverage is less than 84%"
+ if (( $(echo "$BRANCH_COVERAGE < 85" | bc -l) )); then
+ echo "Coverage is less than 85%"
92
exit 1
93
else
94
- echo "Coverage is equal to or greater than 84%"
+ echo "Coverage is equal to or greater than 85%"
95
fi
0 commit comments