ANW-10 bootstrap anwesen crate and CLI skeleton

This commit is contained in:
Andreas Brenner 2026-05-14 14:24:38 +02:00
parent 0c21e6c5ff
commit 317667cce7
9 changed files with 3099 additions and 0 deletions

9
scripts/ci.sh Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Local CI entrypoint: fmt / clippy / test.
# Mirrors what a forge-side runner would execute. Run from the repo root.
set -euo pipefail
cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings
cargo test --all