Files
gomag-vending/.githooks/pre-push
Claude Agent fc36354af6 hooks
2026-03-24 12:07:28 +00:00

10 lines
199 B
Bash

#!/bin/bash
echo "🔍 Running pre-push tests..."
./test.sh ci
EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
echo "❌ Tests failed. Push aborted."
exit 1
fi
echo "✅ Tests passed. Pushing..."