#!/bin/sh# Stop on first errorset-e# Run Cargo clippyecho"Running cargo clippy..."cargo clippy -- -D warnings# Check formattingecho"Checking cargo fmt..."cargo fmt -- --check# Run testsecho"Running cargo test..."cargo test# If all commands succeed, allow the commit to proceedexit 0