Skip to content

Commit

Permalink
Add a justfile with before_commit at the root.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethiraric committed Oct 13, 2024
1 parent 979f8ea commit 53dc2b9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions justfile
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

0 comments on commit 53dc2b9

Please sign in to comment.