chore(justfile): Add some fancy emojis

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-05-08 12:43:28 +00:00
parent 552136400d
commit c69fbca2a0

View File

@@ -20,16 +20,22 @@ _default:
@{{JUST_EXECUTABLE}} --list-heading "{{header}}" --list @{{JUST_EXECUTABLE}} --list-heading "{{header}}" --list
# Run the CI # Run the CI
ci: && msrv ci: && msrv _done_ci
echo "🔨 Building n34..."
cargo build -q cargo build -q
echo "🔍 Checking code formatting..."
cargo fmt -q -- --check cargo fmt -q -- --check
echo "🧹 Running linter checks..."
cargo clippy -q -- -D warnings cargo clippy -q -- -D warnings
# Check that the current MSRV is correct # Check that the current MSRV is correct
msrv: msrv:
echo "Checking MSRV ({{msrv}})" echo "🔧 Verifying MSRV ({{msrv}})..."
rustup -q run --install {{msrv}} cargo check -q 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 # Update the changelog
[script] [script]