.PHONY: up down test lint build check

up:
	docker compose up -d --wait

down:
	docker compose down

test:
	pytest

lint:
	ruff check .

build:
	python -m build

check: build
	twine check --strict dist/*
