anwesen/scripts/ci.sh

11 lines
301 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
2026-05-14 19:04:03 +02:00
# Local CI entrypoint: fmt / clippy / test / hurl contract harness.
# 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
2026-05-14 19:04:03 +02:00
tests/run-hurl.sh