From 8ef291efd8ab6db9801b421c145f47662dfce3ed Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 15 Dec 2025 13:22:00 -0700 Subject: [PATCH] ci: Fixed some typos in the justfile --- justfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/justfile b/justfile index b56d3e8..8394fed 100644 --- a/justfile +++ b/justfile @@ -26,10 +26,10 @@ lint-fix: # Analyze the project for unsafe usage [group: 'style'] -analyze: +@analyze: #!/usr/bin/env bash - @cargo geiger -h > /dev/null 2>&1 | cargo install cargo-geiger - @cargo geiger + cargo geiger -h > /dev/null 2>&1 | cargo install cargo-geiger + cargo geiger # Run all tests [group: 'test'] @@ -38,10 +38,10 @@ test: # Run all tests with coverage [group:'test'] -test-cov: +@test-cov: #!/usr/bin/env bash - @cargo tarpaulin -h > /dev/null 2>&1 || cargo install cargo-tarpaulin - @cargo tarpaulin + cargo tarpaulin -h > /dev/null 2>&1 || cargo install cargo-tarpaulin + cargo tarpaulin # Run all doc tests [group: 'test'] @@ -60,10 +60,10 @@ snapshot-tests: # Review snapshot test changes [group: 'test'] -snapshot-review: +@snapshot-review: #!/usr/bin/env bash - @cargo insta -h > /dev/null 2>&1 || cargo install cargo-insta - @cargo insta review + cargo insta -h > /dev/null 2>&1 || cargo install cargo-insta + cargo insta review # Build and run the binary for the current system run: