.PHONY: check test run

check:
	ruff format --check .
	ruff check .
	mypy app

test:
	pytest

run:
	uvicorn app.main:app --reload
