6 lines
150 B
Bash
Executable File
6 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "[prepush] Running cargo fmt --check"
|
|
cargo fmt -- --check
|
|
echo "[prepush] Running cargo clippy"
|
|
cargo clippy -- -Dwarnings
|