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

set -e

echo "Running pre-push hook:"

echo "Executing: cargo +nightly clippy -- -D clippy::all"
cargo +nightly clippy -- -D clippy::all

echo "Executing: cargo test"
cargo test