chore: update justfile

This commit is contained in:
Kristofers Solo 2025-01-04 23:38:29 +02:00
parent 9198560978
commit f2f333b8cf

View File

@ -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