Skip to content

Commit

Permalink
Add type check to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
randombenj committed Oct 17, 2024
1 parent c049597 commit 77557b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docat/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
.PHONY: all
all: format lint typing pytest

format:
poetry run ruff check --fix
poetry run ruff format
lint:
poetry run ruff check
typing:
poetry run mypy .
pytest:
poetry run pytest

0 comments on commit 77557b3

Please sign in to comment.