Skip to content

Commit b62633c

Browse files
committed
crc-fast-rust: added 'check' script to avoid messing w/ the Makefile. The 'audit' branch is strong and has a few really stong fixes to submit post-no_std PR merge
1 parent 35a2f83 commit b62633c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

scripts/check.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
set -e
3+
4+
cargo fmt --all
5+
cargo check --workspace --all-targets --all-features
6+
cargo clippy --workspace --all-targets --all-features --fix --allow-dirty -- -D warnings
7+
# cargo deny check all
8+
# RUSTDOCFLAGS="-D warnings" cargo doc --workspace --no-deps --all-features
9+
# cargo audit
10+
11+
echo "✅ All checks passed!"

0 commit comments

Comments
 (0)