#!/usr/bin/env bash
#MISE description="Type check with mypy"

set -euo pipefail

echo "🔍 Running type checking..."

uv run --group dev mypy pytest_once/

echo "✅ Type checking passed!"
