#!/bin/bash

set -e

echo "▶ Running linting..."
ruff check .
ruff format . --check --diff

echo "▶ Running type checks..."
poetry run mypy aws_testing_utils/ tests/

echo "▶ Running Unit Tests..."
pytest
echo "✅ All checks passed!"
