Files
takopi/Justfile
T
2026-01-08 13:01:50 +04:00

13 lines
248 B
Makefile

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