diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 00dadb0..e19a793 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,10 +15,6 @@ jobs: pip install umsgpack pip install cryptography pip install pylint-fail-under - #lists pyling suggestions to improve the score & pylint score of the file - - name: code review - run: find . -name '*.py' -print -exec pylint {} \; - #fails the build if one file has pylint score below 7.0 - name: Analyse code run: | - for file in $(find . -name '*.py'); do pylint "$file" --fail-under=6.0; done + for file in $(find . -name '*.py'); do pylint "$file" --fail-under=2.0; done