10 lines
301 B
Bash
Executable file
10 lines
301 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# 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
|
|
tests/run-hurl.sh
|