#!/bin/bash set -euo pipefail # Build and test ExProve MVP echo "==> Building package..." python3 -m build echo "==> Running tests..." pytest -q echo "==> All tests passed."