.PHONY: lint format typecheck test installdeps

lint:
	uv run invoke lint

format:
	uv run invoke lint --fix

typecheck:
	uv run invoke typecheck

test:
	uv run invoke tests

installdeps:
	uv sync --all-packages
