Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ bash: ## Open a bash shell
build: ## Build images
$(DC) build

check: ## Check code quality with ruff
$(RUN) bash -c "ruff format --check . && ruff check . && flake8 . && uv lock --check"
check: ## Check code quality
$(RUN) bash -c "ruff format --check . && ruff check . && flake8 . && mypy . && uv lock --check"

check-all: check test ## Run checks and tests

Expand Down