Skip to content

Commit

Permalink
Fix justfile formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDiekmann committed Mar 4, 2025
1 parent d4c41a6 commit 68c6395
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ format *arguments:

# Lint the code using `clippy`
[no-cd]
clippy *arguments
clippy *arguments:
@just in-pr cargo clippy --profile {{profile}} --all-features --all-targets --no-deps {{arguments}}
@just not-in-pr cargo hack --optional-deps --feature-powerset clippy --profile {{profile}} --all-targets --no-deps {{arguments}}

Expand All @@ -125,7 +125,7 @@ build *arguments:

# Run the test suite
[no-cd]
test *arguments
test *arguments:
cargo hack --optional-deps --feature-powerset nextest run {{arguments}}
cargo test --all-features --doc

Expand All @@ -141,7 +141,7 @@ bench *arguments:

# Run the test suite and generate a coverage report
[no-cd]
coverage *arguments
coverage *arguments:
cargo llvm-cov nextest --all-features --all-targets --cargo-profile coverage {{arguments}}
cargo llvm-cov --all-features --profile coverage --doc {{arguments}}

Expand Down

0 comments on commit 68c6395

Please sign in to comment.