ci: Fixed some typos in the justfile
This commit is contained in:
@@ -26,10 +26,10 @@ lint-fix:
|
|||||||
|
|
||||||
# Analyze the project for unsafe usage
|
# Analyze the project for unsafe usage
|
||||||
[group: 'style']
|
[group: 'style']
|
||||||
analyze:
|
@analyze:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
@cargo geiger -h > /dev/null 2>&1 | cargo install cargo-geiger
|
cargo geiger -h > /dev/null 2>&1 | cargo install cargo-geiger
|
||||||
@cargo geiger
|
cargo geiger
|
||||||
|
|
||||||
# Run all tests
|
# Run all tests
|
||||||
[group: 'test']
|
[group: 'test']
|
||||||
@@ -38,10 +38,10 @@ test:
|
|||||||
|
|
||||||
# Run all tests with coverage
|
# Run all tests with coverage
|
||||||
[group:'test']
|
[group:'test']
|
||||||
test-cov:
|
@test-cov:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
@cargo tarpaulin -h > /dev/null 2>&1 || cargo install cargo-tarpaulin
|
cargo tarpaulin -h > /dev/null 2>&1 || cargo install cargo-tarpaulin
|
||||||
@cargo tarpaulin
|
cargo tarpaulin
|
||||||
|
|
||||||
# Run all doc tests
|
# Run all doc tests
|
||||||
[group: 'test']
|
[group: 'test']
|
||||||
@@ -60,10 +60,10 @@ snapshot-tests:
|
|||||||
|
|
||||||
# Review snapshot test changes
|
# Review snapshot test changes
|
||||||
[group: 'test']
|
[group: 'test']
|
||||||
snapshot-review:
|
@snapshot-review:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
@cargo insta -h > /dev/null 2>&1 || cargo install cargo-insta
|
cargo insta -h > /dev/null 2>&1 || cargo install cargo-insta
|
||||||
@cargo insta review
|
cargo insta review
|
||||||
|
|
||||||
# Build and run the binary for the current system
|
# Build and run the binary for the current system
|
||||||
run:
|
run:
|
||||||
|
|||||||
Reference in New Issue
Block a user