Extend CI tests to include formatting checks.

CI tests now tests 'go vet', 'go fmt' (via goimports) and golint.

Adds Travis experimental OSX support.
This commit is contained in:
klauspost 2015-11-03 13:50:29 +01:00
parent e4a9e27a55
commit b85ddc4e4f
2 changed files with 14 additions and 1 deletions

View File

@ -1,12 +1,24 @@
language: go
sudo: false
os:
- linux
- osx
go:
- 1.3.3
- 1.4.2
- 1.5
- tip
install:
- go get ./...
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
script:
- go get ./...
- go vet ./...
- diff <(goimports -d .) <(printf "")
- diff <(golint ./...) <(printf "")
- go test -v ./...
- go test -cpu=2 -race -v ./...

View File

@ -18,6 +18,7 @@ import (
"time"
"crypto/tls"
"github.com/Unknwon/goconfig"
"github.com/mreiferson/go-httpclient"
"github.com/spf13/pflag"