justfile: harden clippy and tests

This commit is contained in:
2026-06-13 09:50:23 +02:00
parent c00e6eae84
commit 05cac57f3a
+4 -4
View File
@@ -23,16 +23,16 @@ fmt:
just --fmt just --fmt
_fix: _fix:
cargo fix cargo fix --workspace --all-targets --all-features
cargo clippy --fix cargo clippy --workspace --all-targets --all-features --fix
fix: _fix fmt fix: _fix fmt
clippy: clippy:
cargo clippy cargo clippy --workspace --all-targets --all-features -- -D warnings
test: test:
cargo test --workspace cargo test --workspace --all-targets --all-features
frontend-test: frontend-test:
cd crates/lanspread-tauri-deno-ts && deno test --unstable-sloppy-imports tests cd crates/lanspread-tauri-deno-ts && deno test --unstable-sloppy-imports tests