Initial commit
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed

This commit is contained in:
Isaac Mills 2024-03-18 18:21:35 -04:00
commit e892c2f8a3
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
78 changed files with 6070 additions and 0 deletions

11
check.sh Executable file
View 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