test:
    uv sync --group httpbin --group dev
    uv run pytest

lint:
    uv run ruff check
    uv run ty check

preview:
    uv run mkdocs serve

publish-pypi:
    rm dist/*
    uv build
    uv publish

publish-docs:
    uv run mkdocs build
    uvx trifold publish
