Skip to content

Commit

Permalink
Update Makefile to use 'poetry check' instead of 'poetry lock --check'
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsferreira committed Mar 14, 2024
1 parent ac2a487 commit 039b0e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ install: ## Install the poetry environment and install the pre-commit hooks

.PHONY: check
check: ## Run code quality tools.
@echo "πŸš€ Checking Poetry lock file consistency with 'pyproject.toml': Running poetry lock --check"
@poetry lock --check
@echo "πŸš€ Checking Poetry lock file consistency with 'pyproject.toml': Running poetry check --lock"
@poetry check
@echo "πŸš€ Linting code: Running pre-commit"
@poetry run pre-commit run -a
@echo "πŸš€ Static type checking: Running mypy"
Expand Down

0 comments on commit 039b0e1

Please sign in to comment.