ga: fix workflow for pylint

This commit is contained in:
Richard Kubíček
2025-03-05 13:15:43 +01:00
parent 16cb1b39ba
commit 5b50f2c3eb

View File

@@ -20,7 +20,7 @@ jobs:
pip install pylint
- name: pylint
run: |
pylint $(git ls-files '*.py') --fail-under=9.0 --output-format=json > pylint-report.json
pylint $(git ls-files '*.py' | grep -v '^test/') --fail-under=9.0 --output-format=json > pylint-report.json
- name: Generate Pylint Score
id: pylint_score