Skip to content

Commit aaf7444

Browse files
committed
chore: [torrust#1345] add git hook scripts
1 parent 4d9787d commit aaf7444

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
cargo +nightly fmt --check &&
4+
cargo +nightly check --tests --benches --examples --workspace --all-targets --all-features &&
5+
cargo +nightly doc --no-deps --bins --examples --workspace --all-features &&
6+
cargo +nightly machete &&
7+
cargo +stable build &&
8+
CARGO_INCREMENTAL=0 cargo +stable clippy --no-deps --tests --benches --examples --workspace --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious -D clippy::complexity -D clippy::perf -D clippy::style -D clippy::pedantic &&
9+
cargo +stable test --tests --benches --examples --workspace --all-targets --all-features
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
cargo +nightly fmt --check &&
4+
cargo +nightly check --tests --benches --examples --workspace --all-targets --all-features &&
5+
cargo +nightly doc --no-deps --bins --examples --workspace --all-features &&
6+
cargo +nightly machete &&
7+
cargo +stable build &&
8+
CARGO_INCREMENTAL=0 cargo +stable clippy --no-deps --tests --benches --examples --workspace --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious -D clippy::complexity -D clippy::perf -D clippy::style -D clippy::pedantic &&
9+
cargo +stable test --tests --benches --examples --workspace --all-targets --all-features &&
10+
cargo +stable run --bin e2e_tests_runner -- --config-toml-path "./share/default/config/tracker.e2e.container.sqlite3.toml"

0 commit comments

Comments
 (0)