replace check.sh with Makefile

This commit is contained in:
Johan Lundberg 2026-02-20 15:03:20 +01:00
parent a3d4ac1bfd
commit dc84881c87
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1

View file

@ -1,17 +0,0 @@
#!/usr/bin/env bash
# Run all quality checks
set -euo pipefail
echo "==> Formatting..."
uv run ruff format src/ tests/
echo "==> Linting..."
uv run ruff check src/ tests/ --fix
echo "==> Type checking..."
uv run ty check src/
echo "==> Testing..."
uv run pytest -v
echo "==> All checks passed!"