add a justfile for convenience

This should really be synchronized with the
codespaces and github configuration but...
I'm not clever enough to do all that.
This commit is contained in:
Niko Matsakis 2024-07-28 10:52:39 +00:00
parent cafbe9247b
commit 9f95b37af9

7
justfile Normal file
View file

@ -0,0 +1,7 @@
test:
cargo test --workspace --all-features --all-targets
miri:
cargo +nightly miri test --no-fail-fast --all-features
all: test miri