Skip to content

Commit 6bfaf41

Browse files
committed
Add type check to makefile
1 parent a345176 commit 6bfaf41

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docat/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
.PHONY: all
2+
all: format lint typing pytest
3+
14
format:
25
poetry run ruff check --fix
36
poetry run ruff format
47
lint:
58
poetry run ruff check
9+
typing:
10+
poetry run mypy .
611
pytest:
712
poetry run pytest

0 commit comments

Comments
 (0)