diff --git a/scripts/check.sh b/scripts/check.sh deleted file mode 100755 index 2615b9e..0000000 --- a/scripts/check.sh +++ /dev/null @@ -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!"