From 66bed02a5e93e0697028c0b15025750dce61c738 Mon Sep 17 00:00:00 2001 From: John Breaux Date: Tue, 28 Mar 2023 04:38:16 -0500 Subject: [PATCH] Add justfile for common commands, instead of aliases --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..e807e32 --- /dev/null +++ b/justfile @@ -0,0 +1,10 @@ +# Some common commands for working on this stuff + +cover: + cargo llvm-cov --open --doctests + +test: + cargo test --all + +tokei: + tokei --exclude tests/chip8-test-suite