update min score

This commit is contained in:
Salvatore Giordano
2021-03-01 16:46:38 +01:00
parent 3889c07cc1
commit 0084323fca
+2 -2
View File
@@ -32,7 +32,7 @@ jobs:
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
run: |
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
if (( $PERCENTAGE < 110 ))
if (( $PERCENTAGE < 100 ))
then
echo Score too low!
exit 1
@@ -74,7 +74,7 @@ jobs:
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
run: |
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
if (( $PERCENTAGE < 110 ))
if (( $PERCENTAGE < 100 ))
then
echo Score too low!
exit 1