#!/usr/bin/env bash
set -euo pipefail
echo "Installing package in editable mode (to get dependencies)..."
python3 -m pip install -e .
echo "Running pytest..."
pytest -q
echo "Building package..."
python3 -m build
echo "All done."