diff --git a/justfile b/justfile index 67f4ddd..a1d667d 100644 --- a/justfile +++ b/justfile @@ -21,3 +21,12 @@ web-release: # Run tests test: RUSTC_WRAPPER=sccache RUST_BACKTRACE=full cargo nextest run --no-default-features --all-targets + +# Run CI localy +CI: + #!/bin/bash + set -e + cargo fmt --all -- --check + cargo clippy --workspace --all-targets --all-features -- --deny warnings + cargo doc --workspace --all-features --document-private-items --no-deps + cargo test --workspace --no-default-features