8f4643df14
For golint, min_confidence is set to 0.9 since things aren't totally golint clean yet.
11 lines
289 B
YAML
11 lines
289 B
YAML
language: go
|
|
go: release
|
|
install:
|
|
- go get code.google.com/p/go.tools/cmd/vet
|
|
- go get github.com/GeertJohan/fgt
|
|
- go get github.com/golang/lint/golint
|
|
- go get -d -t -v ./...
|
|
script:
|
|
- $HOME/gopath/bin/fgt $HOME/gopath/bin/golint -min_confidence=0.9 *.go
|
|
- go vet *.go
|
|
- go test -v ./...
|