From 538972814a323b62c8f7be905c14075bf4c90ff8 Mon Sep 17 00:00:00 2001 From: airton Date: Mon, 16 Feb 2026 13:09:15 +0100 Subject: [PATCH] Add 'all' recipe to justfile --- justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/justfile b/justfile index 30db50f8b..84ec1a4dd 100644 --- a/justfile +++ b/justfile @@ -60,3 +60,15 @@ docsrs *flags: # Update the recent and minimal lock files. update-lock-files: contrib/update-lock-files.sh + +# Run all just recipes(commands) +all: + just build + just check + just lint + just lint-verify + just lint-integration-tests + just fmt + just format + just docsrs + just update-lock-files