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