mirror of
https://github.com/kristoferssolo/tls-pq-bench.git
synced 2026-03-21 16:26:22 +00:00
15 lines
284 B
Bash
Executable File
15 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Running cargo fmt..."
|
|
cargo fmt --all -- --check
|
|
|
|
echo "Running cargo clippy..."
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
echo "Checking docs..."
|
|
RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --all-features
|
|
|
|
echo "Pre-commit checks passed!"
|