diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f6abfcf..5e252c62 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: - name: Lint code run: | - poetry run flake8 aiogram tests + poetry run flake8 aiogram poetry run mypy aiogram - name: Run tests diff --git a/Makefile b/Makefile index 4da287a1..6a2f442a 100644 --- a/Makefile +++ b/Makefile @@ -78,12 +78,12 @@ black: .PHONY: flake8 flake8: - $(py) flake8 aiogram tests + $(py) flake8 aiogram .PHONY: flake8-report flake8-report: mkdir -p $(reports_dir)/flake8 - $(py) flake8 --format=html --htmldir=$(reports_dir)/flake8 aiogram tests + $(py) flake8 --format=html --htmldir=$(reports_dir)/flake8 aiogram .PHONY: mypy mypy: