返回 DeepSeek-Reasonix
pre-push
根目录 / .githooks / pre-push
1 #!/bin/sh
2 # Go-native pre-push gate replacing the retired v1 npm hook (install: make hooks).
3 # Full tests run in CI; vet is the fast, cross-platform local check.
4 set -e
5 go vet ./...
6
6 lines Plain Text