summaryrefslogtreecommitdiffstats
path: root/.cargo-husky/hooks/pre-push
blob: 2887163973bb4e564cce9c11ef6707bcf43ca69e (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 -- -D clippy::all"
cargo clippy -- -D clippy::all

# echo "Executing: cargo test"
# cargo test