From fbbc7223926359cdfe6698c7e9efc6ec569b4e75 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 09:02:45 +0000 Subject: [PATCH] chore: add root Mustfile (RSR-mandatory checks contract) Adds the root Mustfile required by REQUIRED-FILES.adoc (was missing across the -iser family). Declares the mandatory checks, each mapping to an existing Justfile recipe (just lint / test / fmt). Part of the base-camp RSR compliance sweep. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Mbq6yKF9RhFai6EQ7WqKhQ --- Mustfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Mustfile diff --git a/Mustfile b/Mustfile new file mode 100644 index 0000000..a864992 --- /dev/null +++ b/Mustfile @@ -0,0 +1,15 @@ +# SPDX-License-Identifier: MPL-2.0 +# Mustfile — hyperpolymath mandatory checks +# See: https://github.com/hyperpolymath/mustfile +# +# Declarative contract of checks that MUST pass. Each maps to a recipe +# that already exists in this repo's Justfile. +version: 1 + +checks: + - name: security + run: just lint + - name: tests + run: just test + - name: format + run: just fmt