.PHONY: install test check build
install:
	python -m pip install -e '.[dev]'
test:
	python -m pytest -q
check:
	python -m pytest -q
	python -m ruff check src tests
build:
	python -m build
