-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpre-commit.sh
More file actions
executable file
·61 lines (50 loc) · 1.34 KB
/
pre-commit.sh
File metadata and controls
executable file
·61 lines (50 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
#
# pre-commit.sh
#
# fmt and test everything. check for garbage being comitted.
# stash changes so only staged code is tested.
#
# add a check for bullshit like 'panic()' being comitted
#
# stash only if we have unstaged changes, pop at exit if so
if ! git diff-files --quiet
then
# There are unstaged changes; stash and then pop when script exits
git stash -q --keep-index
trap 'git stash pop -q' EXIT
fi
go build ./... >/dev/null 2>&1
if [ $? -ne 0 ]
then
echo "Failed to build project. Please check the output of"
echo "go build or run commit with --no-verify if you know"
echo "what you are doing."
exit 1
fi
go test ./... >/dev/null 2>&1
if [ $? -ne 0 ]
then
echo "Failed to run tests. Please check the output of"
echo "go test or run commit with --no-verify if you know"
echo "what you are doing."
exit 1
fi
go fmt ./... >/dev/null 2>&1
if [ $? -ne 0 ]
then
echo "Failed to run go fmt. This shouldn't happen. Please"
echo "check the output of the command to see what's wrong"
echo "or run commit with --no-verify if you know what you"
echo "are doing."
exit 1
fi
go vet ./... >/dev/null 2>&1
if [ $? -ne 0 ]
then
echo "go vet has detected potential issues in your project."
echo "Please check its output or run commit with --no-verify"
echo "if you know what you are doing."
exit 1
fi
echo "ALL OK"