add basic example of justfile (#345)

part of #156
This commit is contained in:
Glen De Cauwsemaecker 2024-10-08 14:02:29 +02:00 committed by GitHub
parent d4307f7b8c
commit bbc8d9f872
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
justfile Normal file
View file

@ -0,0 +1,10 @@
check:
cargo check --workspace
test:
cargo test --workspace --lib --examples
clippy:
cargo clippy --tests -- --deny warnings
qa: check test clippy