Files
harmony/build/check.sh
Jean-Gabriel Gill-Couture 907ae04195
Some checks failed
Run Check Script / check (pull_request) Failing after 9s
chore: Add book.sh script and ci.sh, moved check.sh to build/ folder
2026-03-19 22:43:32 -04:00

11 lines
155 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")/.."
rustc --version
cargo check --all-targets --all-features --keep-going
cargo fmt --check
cargo clippy
cargo test