#!/bin/bash

set -e

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

echo "▶ Running Unit Tests..."
pytest --rootdir=tests tests/
echo "✅ Unit Tests are Done. All tests passed!"
