#!/bin/bash # verify — Build and test the claudomator codebase # Usage: ./scripts/verify # Example: ./scripts/verify set -euo pipefail REPO_DIR="$(cd "$(dirname "$0")/.." && pwd)" cd "${REPO_DIR}" echo "==> Building..." go build ./... echo "==> Testing (race detector on)..." go test -race ./... echo "==> All checks passed."