From 0cb359896d5dd66ecb6efe08c87f52b93351951b Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Tue, 25 Aug 2026 16:23:07 +0100 Subject: [PATCH] Add justfile for common tasks --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..d298250 --- /dev/null +++ b/justfile @@ -0,0 +1,9 @@ +lint: + prek run --all-files + +test: + cargo test + +coverage: + cargo tarpaulin --target-dir target/coverage --skip-clean + xdg-open tarpaulin-report.html