#!/usr/bin/env bash
set -euo pipefail
echo "==> Running tests with pytest ..."
pytest -q
echo "==> Building the package (python3 -m build) ..."
python3 -m build
echo "==> Build completed successfully."