aboutsummaryrefslogtreecommitdiff
path: root/maint/hooks/pre-push
blob: 542f74785f5a6cc03c56ba2a3ec5a19af29d00a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

set -euo pipefail

echo '+cargo fmt --all -- --check'
cargo fmt --all -- --check

echo '+cargo clippy --all-features --all-targets -- -D warnings'
cargo clippy --all-features --all-targets -- -D warnings

echo '+cargo test --all'
cargo test --all

echo '+./maint/shellcheck_all'
./maint/shellcheck_all