Files
takopi/Justfile
T
2026-01-12 06:05:15 +04:00

13 lines
274 B
Makefile

check:
uv run ruff format --check src tests
uv run ruff check src tests
uv run ty check src tests
uv run pytest
bundle:
#!/usr/bin/env bash
set -euo pipefail
bundle="takopi.git.bundle"
git bundle create "$bundle" --all
open -R "$bundle"