#!/usr/bin/env bash
set -euo pipefail

cd "$(git rev-parse --show-toplevel)"

echo "Running ruff format..."
uv run ruff format --check src/ tests/

echo "Running ruff check..."
uv run ruff check src/ tests/

echo "Running pyright..."
uv run pyright src/
