.PHONY: format lint type test verify run
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
