-
Notifications
You must be signed in to change notification settings - Fork 15
/
check.sh
executable file
·56 lines (45 loc) · 1.19 KB
/
check.sh
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
#!/usr/bin/env bash
set -e
if [ -t 1 ]
then
YELLOW='\033[0;33m'
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m'
fi
yellow() { printf "${YELLOW}%s${NC}" "$*"; }
green() { printf "${GREEN}%s${NC}" "$*"; }
red() { printf "${RED}%s${NC}" "$*"; }
good() {
echo "$(green "● success:")" "$@"
}
bad() {
ret=$1
shift
echo "$(red "● failed:")" "$@"
exit $ret
}
try() {
"$@" || bad $? "$@" && good "$@"
}
cmd_exists() {
type "$1" >/dev/null 2>&1
}
cmd_exists go || bad 1 "uhhh, where's your go install? what are you even doing here!"
cmd_exists gofmt || bad 1 "so you have go installed, but not gofmt? wtf mate^^"
cmd_exists golangci-lint || bad 1 "cannot find golangci-lint; check PATH or go to https://github.com/golangci/golangci-lint"
try go test --tags=integration ./...
#try go run --race .
{
{
opt='shopt -s extglob nullglob'
gofmt='gofmt -s -w -l !(vendor)/ *.go'
notice=" running: ( $opt; $gofmt; )"
prefix=" $(yellow modified)"
trap 'echo "$notice"; $opt; $gofmt | sed -e "s#^#$prefix #g"' EXIT
}
# comma separate linters (e.g. "gofmt,stylecheck")
additional_linters="gofmt"
try golangci-lint run --enable $additional_linters ./...
trap '' EXIT
}