.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

# Integration tests need a Postgres carrying both `vector` and `pg_textsearch`; `dev/docker-
# compose.yaml` in this directory starts one. See the README.
