mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-04-08 17:05:59 +02:00
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Running pre-push hook:"
|
|
|
|
echo "Executing: cargo clippy --all-targets --workspace -- -D warnings"
|
|
cargo clippy --all-targets --workspace -- -D warnings
|
|
|
|
# echo "Executing: cargo test"
|
|
# cargo test
|