-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Coverage check sectio in DEVELOPMENT.md
- Loading branch information
Showing
3 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# List the available commands | ||
help: | ||
@just --list --justfile {{justfile()}} | ||
|
||
# Run all the rust tests | ||
test: | ||
cargo test | ||
cargo test --all-features | ||
|
||
# Auto-fix all clippy warnings | ||
fix: | ||
cargo clippy --fix --allow-staged | ||
cargo clippy --all-targets --all-features --workspace --fix --allow-staged | ||
|
||
# Run the pre-commit checks | ||
check: | ||
./.github/pre-commit | ||
|
||
# Format the code | ||
format: | ||
cargo fmt | ||
|
||
# Generate a test coverage report | ||
coverage: | ||
cargo llvm-cov --lcov > lcov.info |