Skip to content

Commit

Permalink
Update pylint_checking.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
soutobias authored Nov 2, 2023
1 parent c7530cb commit 16f5fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pylint_checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
OLD_SCORE=$(echo "scale=2; $OLD_SCORE" | bc)
THREESHOLD_SCORE=$OLD_SCORE;
echo THREESHOLD_SCORE=$THREESHOLD_SCORE
if [ "$(echo "$NEW_SCORE > $THREESHOLD_SCORE" | bc -l)" -eq 1 ] ; then
if [ "$(echo "$NEW_SCORE >= $THREESHOLD_SCORE" | bc -l)" -eq 1 ] ; then
echo "NEW_SCORE is greater than THREESHOLD_SCORE"
echo "Updating THREESHOLD_SCORE"
echo "$NEW_SCORE" > .pylint-score
Expand Down

0 comments on commit 16f5fca

Please sign in to comment.