#!/bin/sh# Pre-push hook to ensure all tests pass before pushingecho"๐งช Running pre-push tests..."# Run all tests (includes validation)make testif[$?-ne 0 ];thenecho"โ Pre-push tests failed. Please fix the issues before pushing."exit 1fiecho"โ Pre-push tests passed!"exit 0