-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a
justfile
with before_commit
at the root.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
before_commit: | ||
cargo fmt --check | ||
cargo clippy --release --all-targets -- -D warnings | ||
cargo clippy --all-targets -- -D warnings | ||
cargo build --release --all-targets | ||
cargo build --all-targets | ||
cargo test | ||
cargo test --release | ||
cargo test --doc | ||
cargo build --release --package gen_large_yaml --bin gen_large_yaml --manifest-path bench/tools/gen_large_yaml/Cargo.toml | ||
cargo build --release --package bench_compare --bin bench_compare --manifest-path bench/tools/bench_compare/Cargo.toml | ||
RUSTDOCFLAGS="-D warnings" cargo doc --all-features | ||
|