.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 src
test:
	pytest -q
verify: lint type test
image:
	docker build -t endpoint-monitor .
