From 32e317c42a68d3ec9a651ae9271d3e7451b66e71 Mon Sep 17 00:00:00 2001 From: Tao Feng Date: Thu, 15 Oct 2020 17:08:36 -0700 Subject: [PATCH] fix: enable flake8 and mypy in CI (#75) Signed-off-by: feng-tao --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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