dominus

One damus client to rule them all
git clone git://jb55.com/dominus
Log | Files | Refs | README

check.sh (414B)


      1 #!/usr/bin/env bash
      2 # This scripts runs various CI-like checks in a convenient way.
      3 set -eux
      4 
      5 cargo check --workspace --all-targets
      6 cargo check --workspace --all-features --lib --target wasm32-unknown-unknown
      7 cargo fmt --all -- --check
      8 cargo clippy --workspace --all-targets --all-features --  -D warnings -W clippy::all
      9 cargo test --workspace --all-targets --all-features
     10 cargo test --workspace --doc
     11 trunk build