blob: 603bc0f1921d6a9c10f6a5304224476035e8ae50 (
plain)
1
2
3
4
5
6
7
|
#!/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 --target=wasm32-unknown-unknown --no-default-features || exit 1
git add -u || exit 1
|