aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/pre-push-hook.sh
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-15 09:25:28 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-15 09:25:28 -0800
commit01c7931a6b523c28d856ba05d2d6cd6ac7cc01b2 (patch)
tree1b28fd89b8bebd899128697586b91171edb2c9dd /scripts/pre-push-hook.sh
parent52b5885c87ae4f97c1208fefd98f94e6b5af0076 (diff)
downloadneko-01c7931a6b523c28d856ba05d2d6cd6ac7cc01b2.tar.gz
neko-01c7931a6b523c28d856ba05d2d6cd6ac7cc01b2.tar.bz2
neko-01c7931a6b523c28d856ba05d2d6cd6ac7cc01b2.zip
Add local git hooks to run 'make check' before push
Diffstat (limited to 'scripts/pre-push-hook.sh')
-rw-r--r--scripts/pre-push-hook.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/pre-push-hook.sh b/scripts/pre-push-hook.sh
new file mode 100644
index 0000000..a943ed4
--- /dev/null
+++ b/scripts/pre-push-hook.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+echo "Running pre-push hooks..."
+make check
+
+RESULT=$?
+
+if [ $RESULT -ne 0 ]; then
+ echo "Pre-push check failed. Please fix issues before pushing."
+ exit 1
+fi
+
+echo "Pre-push check passed."
+exit 0