#!/usr/bin/env bash

set -e

cd "$(dirname "$0")/.."

uv run ruff format --check .
uv run ruff check .
uv run mypy src
uv run pytest
