commit cc043a4ec3efd0299c130df0efef2f0b7c6ae9bb parent bf7123df10ff2baee37fc29be05d54de8339c971 Author: William Casarin <jb55@jb55.com> Date: Sat, 1 Jul 2023 11:26:33 -0700 check script Diffstat:
A | check | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/check b/check @@ -0,0 +1,11 @@ +#!/usr/bin/env 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 +cargo fmt --all -- --check +cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all +cargo test --workspace --all-targets --all-features +cargo test --workspace --doc +trunk build