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

set -e

echo "Running pre-push hook:"

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

# echo "Executing: cargo test"
# cargo test