Skip to content

Commit ea02c87

Browse files
committed
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 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Mbq6yKF9RhFai6EQ7WqKhQ
1 parent ffbc218 commit ea02c87

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Mustfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
# Mustfile — hyperpolymath mandatory checks
3+
# See: https://github.com/hyperpolymath/mustfile
4+
#
5+
# Declarative contract of checks that MUST pass. Each maps to a recipe
6+
# that already exists in this repo's Justfile.
7+
version: 1
8+
9+
checks:
10+
- name: security
11+
run: just lint
12+
- name: tests
13+
run: just test
14+
- name: format
15+
run: just fmt

0 commit comments

Comments
 (0)