From 7377d952c87fbff9e6dd5cafa900615dea1add04 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sat, 15 Mar 2025 22:46:53 +0100 Subject: [PATCH] feat(justfile): Add ready recipe Signed-off-by: Myzel394 --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index a731785..292f2d5 100644 --- a/justfile +++ b/justfile @@ -23,3 +23,8 @@ show-nvim-logs: test: nix develop --command bash -c 'go test ./... -count=1' +# Ready for a PR? Run this recipe before opening the PR! +ready: + just lint + just test +