diff --git a/Makefile b/Makefile index b44201e..8c68f75 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,13 @@ python -m pytest tests python3 -bb -m pytest tests - test: test_unit + +lint: + flake8 . + +.PHONY: mypy +mypy: + mypy . + + + test: test_unit lint mypy