From 2d8de5fd78489ca9e50b87fb28130ec9a66a6008 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Fri, 15 Mar 2024 09:59:11 +0100 Subject: [PATCH] misc(ci): Enable errors-only pylint --- .github/workflows/python.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f5018a7..6195e0b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -18,9 +18,8 @@ jobs: pip install flake8 pylint pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Analysing the code with pylint - if: false run: | - pylint $(git ls-files '*.py') + pylint --errors-only $(git ls-files '*.py') - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names