From f2f333b8cf5b54cb265413779bc77b041189d455 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sat, 4 Jan 2025 23:38:29 +0200 Subject: [PATCH] chore: update justfile --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) 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