summaryrefslogtreecommitdiff
path: root/pre-commit.sh
blob: fb3459b5b61fe511cfe56bad91a6286ae01e52f9 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
cargo fmt || exit 1
cargo check || exit 1
cargo clippy -- -D warnings || exit 1
# Check that there are no errors with no_std
cargo check --no-default-features || exit 1
cargo test || exit 1
git add -u || exit 1