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