From c69fbca2a0a28961ddfbf4cea412e5b5cce03819 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Thu, 8 May 2025 12:43:28 +0000 Subject: [PATCH] chore(justfile): Add some fancy emojis Signed-off-by: Awiteb --- justfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 9d1e125..68e9f8f 100644 --- a/justfile +++ b/justfile @@ -20,16 +20,22 @@ _default: @{{JUST_EXECUTABLE}} --list-heading "{{header}}" --list # Run the CI -ci: && msrv +ci: && msrv _done_ci + echo "๐Ÿ”จ Building n34..." cargo build -q + echo "๐Ÿ” Checking code formatting..." cargo fmt -q -- --check + echo "๐Ÿงน Running linter checks..." cargo clippy -q -- -D warnings # Check that the current MSRV is correct msrv: - echo "Checking MSRV ({{msrv}})" + echo "๐Ÿ”ง Verifying MSRV ({{msrv}})..." rustup -q run --install {{msrv}} cargo check -q - echo "MSRV is correct" + echo "โœ… MSRV verification passed" + +_done_ci: + echo "๐ŸŽ‰ CI pipeline completed successfully" # Update the changelog [script]