ao-cli 0.1.12

A unified administration tool for Linux systems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

echo "Running pre-commit hooks..."

echo "Checking formatting (cargo fmt)..."
cargo fmt --all -- --check

echo "Linting with Clippy (cargo clippy)..."
cargo clippy --all-targets --all-features -- -D warnings

echo "Running tests (cargo test)..."
cargo test --all-targets --all-features

echo "All checks passed!"
exit 0