9 lines
113 B
Bash
9 lines
113 B
Bash
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
golint
|
|
go fmt
|
|
go tool vet --all --shadow .
|
|
gocyclo -over 12 .
|
|
go test -timeout 5s -test.v
|