From 3c6f892cfa13cf1ff845a5fd8ca6a36fd29f5152 Mon Sep 17 00:00:00 2001 From: ssolson Date: Tue, 20 Feb 2024 10:54:28 -0700 Subject: [PATCH] set to 7 --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index bf35abd66..4077091a9 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -29,7 +29,7 @@ jobs: score=$(echo "$pylint_output" | grep "Your code has been rated at" | awk '{print $7}' | sed 's/\/10//' || echo "0") echo "Pylint score: $score" # Define the minimum acceptable score - min_score=8.0 + min_score=7.0 # Check if score is a number, exit with code 1 (failure) if not python -c "import sys; score='$score'; sys.exit(0 if score.replace('.', '', 1).isdigit() else 1)" # Compare the score with the minimum acceptable score, exit with code 1 if below threshold