#!/usr/bin/env bash
set -euo pipefail
# One sync for ruff + mypy (shared venv). Prefer this in CI over separate jobs.
bash .github/ci/setup-python
uv run ruff check .
uv run ruff format --check .
uv run mypy src/dns_updater
