-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMustfile
More file actions
35 lines (28 loc) · 833 Bytes
/
Copy pathMustfile
File metadata and controls
35 lines (28 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# SPDX-License-Identifier: MPL-2.0 OR Palimpsest-0.8
# SPDX-FileCopyrightText: 2026 Hyperpolymath
#
# Mustfile - Oblíbený deployment contract
# See AUTHORITY_STACK.mustfile-nickel.scm for governance.
# All checks route through justfile.
version: 1
checks:
- name: build
run: just build
description: Build the Oblíbený compiler
- name: test
run: just test
description: Run conformance and unit tests
- name: lint
run: just lint
description: Static analysis and validation
- name: fmt
run: just fmt
description: Code formatting check
- name: golden-path
run: just demo
description: Run the ANCHOR-defined smoke test
transitions:
- name: release
requires: [build, test, lint]
run: just release $VERSION
description: Prepare a release (requires VERSION env var)