From abab5a5818978211cccbceb6c3d011bf26b675e4 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Mon, 7 Nov 2022 17:07:45 +0100 Subject: [PATCH] chore(justfile): Add check rule --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 9aab837..ec08ae0 100644 --- a/justfile +++ b/justfile @@ -37,6 +37,9 @@ version := '0.0.0' all: _extract_vendor cargo build -p pop-launcher-bin {{cargo_args}} +check: + cargo check -p pop-launcher-bin {{cargo_args}} + # Remove Cargo build artifacts clean: cargo clean