5 lines
131 B
Bash
Executable file
5 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
|