.PHONY: format lint type test check docker-build
format:
	ruff format .
lint:
	ruff check .
type:
	mypy app
test:
	pytest -q
check: lint type test
docker-build:
	docker build -t endpoint-monitor:local .
