diff --git a/Makefile b/Makefile index 3c10e41..f4ac408 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,12 @@ -.PHONY: format lint type test verify run +.PHONY: format lint type test check docker-build format: ruff format . lint: - ruff format --check . ruff check . type: mypy app test: pytest -q -verify: lint type test -run: - uvicorn app.main:app --reload +check: lint type test +docker-build: + docker build -t endpoint-monitor:local .