Skip to content

Commit

Permalink
feat(#9): separate pylint/flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Jul 8, 2024
1 parent 1f161ab commit a0a49b1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,10 @@ jobs:
- name: Check with Pylint and Flake8
run: |
poetry install
git ls-files '*.py' | xargs -I {} sh -c 'poetry run pylint "$@" && poetry run flake8 "$@"' _ {}
git ls-files '*.py' | \
xargs -I {} sh -c '
echo "Running Pylint for {}"
poetry run pylint "$@"
echo "Running Flake8 for {}"
poetry run flake8 "$@"
' _ {}

0 comments on commit a0a49b1

Please sign in to comment.