#!/usr/bin/env bash # Run once after cloning: download dependencies, generate go.sum, run unit tests. set -euo pipefail cd "$(dirname "$0")" go mod tidy go test ./internal/mtls/... echo "setup complete — run 'make build' to verify"