diff --git a/justfile b/justfile new file mode 100644 index 00000000..f054d51d --- /dev/null +++ b/justfile @@ -0,0 +1,10 @@ +check: + cargo check --workspace + +test: + cargo test --workspace --lib --examples + +clippy: + cargo clippy --tests -- --deny warnings + +qa: check test clippy