mirror of
https://github.com/ClementTsang/bottom
synced 2025-02-16 13:18:28 +00:00
9 lines
181 B
Bash
Executable file
9 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Running pre-push hook:"
|
|
|
|
echo "Executing: cargo +nightly clippy -- -D clippy::all"
|
|
cargo +nightly clippy -- -D clippy::all
|
|
|
|
echo "Executing: cargo test"
|
|
cargo test
|