summaryrefslogtreecommitdiffstats
path: root/.cargo-husky/hooks/pre-push
blob: c88e49d4267e538c62f9193c28908b673481424c (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

echo "Running pre-push hook:"

echo "Executing: cargo fmt --all -- --check"
cargo fmt --all -- --check

echo "Executing: cargo clippy --all-targets --workspace -- -D warnings"
cargo clippy --all-targets --workspace -- -D warnings