diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b6c44d3..fe15ebc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,9 @@ jobs: - name: Set up the environment uses: ./.github/actions/setup-poetry-env + - name: install stubs + run: yes | mypy --install-types + - name: Run checks run: make check diff --git a/Makefile b/Makefile index 77cc867..6d07971 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,6 @@ install: ## Install the poetry environment and install the pre-commit hooks .PHONY: check check: ## Run code quality tools. - @poetry run mypy --install-types @echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry lock --check" @poetry lock --check @echo "🚀 Linting code: Running pre-commit"