.PHONY: fmt lint typecheck test test-all build
fmt:
	ruff format src tests
lint:
	ruff check src tests
typecheck:
	mypy src/qbox
test:
	pytest tests/unit
test-all:
	pytest tests
build:
	python -m build
