Skip to content

Commit a1eda78

Browse files
Increase test coverage check to 85% (#560)
1 parent 4c66db2 commit a1eda78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/prCheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
run: |
8888
BRANCH_COVERAGE=$(cat coverage.txt)
8989
echo "Branch Coverage: $BRANCH_COVERAGE%"
90-
if (( $(echo "$BRANCH_COVERAGE < 84" | bc -l) )); then
91-
echo "Coverage is less than 84%"
90+
if (( $(echo "$BRANCH_COVERAGE < 85" | bc -l) )); then
91+
echo "Coverage is less than 85%"
9292
exit 1
9393
else
94-
echo "Coverage is equal to or greater than 84%"
94+
echo "Coverage is equal to or greater than 85%"
9595
fi

0 commit comments

Comments
 (0)