Skip to content

Commit

Permalink
Move pylint checks last
Browse files Browse the repository at this point in the history
  • Loading branch information
MattFisher committed Jul 14, 2023
1 parent 4878cbc commit 0703e90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/code_quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ jobs:
- name: Unit & Coverage test with pytest
run: poetry run pytest

- name: Check style with pylint
run: poetry run pylint django_url_security/ tests/
- name: Check format with blue
run: poetry run blue --check django_url_security/ tests/
- name: Check type hinting with mypy
run: poetry run mypy --strict --config-file=mypy.ini django_url_security/

- name: Run pre-commit checks
run: poetry run pre-commit run --all-files

- name: Check style with pylint
run: poetry run pylint django_url_security/ tests/

0 comments on commit 0703e90

Please sign in to comment.