diff --git a/Makefile b/Makefile index f4ac408..d644c83 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,15 @@ -.PHONY: format lint type test check docker-build +.PHONY: install format lint type test verify image +install: + python -m pip install -e '.[dev]' format: ruff format . lint: + ruff format --check . ruff check . type: - mypy app + mypy src test: pytest -q -check: lint type test -docker-build: - docker build -t endpoint-monitor:local . +verify: lint type test +image: + docker build -t endpoint-monitor .