mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-04-08 17:05:59 +02:00
12 lines
249 B
Bash
Executable File
12 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
|