Files
ReactionSystemsGUI/reaction_systems_gui/check.sh
elvis 55c7675915 Better cache, fixed order for macro retrieve_from_cache
Better cache by saving last output and recomputing only when there is
a need.
2025-10-23 01:47:49 +02:00

11 lines
396 B
Bash
Executable File

#!/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
# 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