2025-10-17 21:42:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
# This scripts runs various CI-like checks in a convenient way.
|
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
|
|
cargo check --workspace --all-targets
|
|
|
|
|
cargo check --workspace --all-features --lib --target wasm32-unknown-unknown
|
2025-10-23 01:47:49 +02:00
|
|
|
# cargo fmt --all -- --check
|
2025-10-17 21:42:41 +02:00
|
|
|
cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all
|
|
|
|
|
cargo test --workspace --all-targets --all-features
|
|
|
|
|
cargo test --workspace --doc
|