Skip to content

Commit ea836d5

Browse files
committed
fix: add mypy to check command
1 parent 11306ca commit ea836d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make/common.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ bash: ## Open a bash shell
88
build: ## Build images
99
$(DC) build
1010

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

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

0 commit comments

Comments
 (0)