From 2663521b02db7080169c99fb0f426f98c05b63bb Mon Sep 17 00:00:00 2001 From: Alexey <4681325+qqrm@users.noreply.github.com> Date: Thu, 5 Feb 2026 09:37:57 +0300 Subject: [PATCH] docs: add just help descriptions --- Justfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index a136fd1..64cb41a 100644 --- a/Justfile +++ b/Justfile @@ -1,28 +1,37 @@ set dotenv-load := true set shell := ["pwsh", "-NoLogo", "-NoProfile", "-Command"] -default: +# Show all available recipes. +default: help + +# List all recipes with descriptions. +help: @just --list # ----------------------------- # Quality gates # ----------------------------- +# Check formatting. fmt: cargo fmt --check +# Run clippy with CI flags. clippy: cargo clippy --all-targets --all-features --locked -- -D warnings +# Run the test suite. test: cargo test --locked +# Run all quality checks. check: fmt clippy test # ----------------------------- # Release helpers # ----------------------------- +# Bump Cargo.toml (and Cargo.lock) version and commit. bump VERSION: $ErrorActionPreference = 'Stop' $version = '{{VERSION}}' @@ -44,6 +53,7 @@ bump VERSION: } git commit -m "chore: bump version to $version" +# Create and auto-merge a release PR from dev to main. publish: $ErrorActionPreference = 'Stop' $branch = git rev-parse --abbrev-ref HEAD