feat: Add check.sh helper script to make sure code looks OK before pushing

This commit is contained in:
Jean-Gabriel Gill-Couture 2025-04-24 13:16:20 -04:00
parent 508b97ca7c
commit f5e3f1aaea

5
check.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
set -e
cargo check --all-targets --all-features --keep-going
cargo fmt --check
cargo test