From 1ee7a1c2915845e7e0040f66967896933a4e9cce Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Sat, 20 Dec 2014 18:55:26 +0800 Subject: [PATCH] Update clean.sh --- clean.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/clean.sh b/clean.sh index 01b003d..47bb388 100644 --- a/clean.sh +++ b/clean.sh @@ -1,21 +1,8 @@ #!/bin/bash -# The script does automatic checking on a Go package and its sub-packages, including: -# 1. gofmt (http://golang.org/cmd/gofmt/) -# 2. goimports (https://github.com/bradfitz/goimports) -# 3. golint (https://github.com/golang/lint) -# 4. go vet (http://golang.org/cmd/vet) -# 5. race detector (http://blog.golang.org/race-detector) -# 6. test coverage (http://blog.golang.org/cover) +# see https://gist.github.com/hailiang/0f22736320abe6be71ce for more details set -e -# Automatic checks -test -z "$(gofmt -l -w . | tee /dev/stderr)" -test -z "$(goimports -l -w . | tee /dev/stderr)" -test -z "$(golint . | tee /dev/stderr)" -go vet ./... -go test -race ./... - # Run test coverage on each subdirectories and merge the coverage profile. echo "mode: count" > profile.cov