Remove lock flag from check (#181)

This commit is contained in:
Sterling Dreyer 2024-12-19 11:36:32 -08:00 committed by GitHub
parent 1512d0699e
commit 950a8600f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,8 +45,8 @@ bump-version: ## Bump the version in the pyproject.toml file
.PHONY: check
check: ## Run code quality tools.
@echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry check --lock"
@poetry check --lock
@echo "🚀 Checking Poetry lock file consistency with 'pyproject.toml': Running poetry check"
@poetry check
@echo "🚀 Linting code: Running pre-commit"
@poetry run pre-commit run -a
@echo "🚀 Static type checking: Running mypy"