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