From 77557b3fd713a375ff13812f9c78f5d165fa4f7b Mon Sep 17 00:00:00 2001 From: Benj Fassbind Date: Thu, 17 Oct 2024 16:22:34 +0200 Subject: [PATCH] Add type check to makefile --- docat/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docat/Makefile b/docat/Makefile index 2b366d56..90e02ae6 100644 --- a/docat/Makefile +++ b/docat/Makefile @@ -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