blob: 28d641e8616282e81ba291c50dad1d2e6cc2f0a3 (
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/common/shellcheck-all'
./maint/common/shellcheck-all
|