2025-04-15 16:16:49 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
2025-05-06 14:32:40 +05:30
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
|
|
|
cd "$SCRIPT_DIR/.."
|
|
|
|
|
|
2025-04-15 16:16:49 +08:00
|
|
|
# run mypy checks
|
2025-05-06 09:16:43 +08:00
|
|
|
uv run --directory api --dev --with pip \
|
2025-07-01 04:58:00 -04:00
|
|
|
python -m mypy --install-types --non-interactive --exclude venv ./
|