mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 06:34:16 +00:00
11 lines
249 B
Bash
Executable file
11 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Running pre-push hook:"
|
|
|
|
echo "Executing: cargo fmt --all -- --check"
|
|
cargo fmt --all -- --check
|
|
|
|
echo "Executing: cargo clippy --all-targets --workspace -- -D warnings"
|
|
cargo clippy --all-targets --workspace -- -D warnings
|