1 2 3 4 5 6 7 8 9 10 11 12 13
#!/bin/bash echo "Running cargo fmt..." cargo fmt echo "Running cargo clippy..." cargo clippy -- -D warnings echo "Running cargo test..." cargo test echo "Running example ..." cargo run --example ideal_use_case echo "All checks completed!"