.PHONY: test lint format serve

test:
	uv run pytest tests/ -v --ignore=tests/integration

lint:
	uv run ruff check .

format:
	uv run ruff format .

serve:
	python server.py
