This commit is contained in:
commit
e892c2f8a3
78 changed files with 6070 additions and 0 deletions
11
check.sh
Executable file
11
check.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
# This scripts runs various CI-like checks in a convenient way.
|
||||
set -eux
|
||||
|
||||
cargo check --quiet --workspace --all-targets
|
||||
cargo check --quiet --workspace --all-features --lib --target wasm32-unknown-unknown
|
||||
cargo fmt --all -- --check
|
||||
cargo clippy --quiet --workspace --all-targets --all-features -- -D warnings -W clippy::all
|
||||
cargo test --quiet --workspace --all-targets --all-features
|
||||
cargo test --quiet --workspace --doc
|
||||
trunk build
|
||||
Loading…
Add table
Add a link
Reference in a new issue