We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4cb69f7 + 34a18d8 commit 854c423Copy full SHA for 854c423
.travis.yml
@@ -5,25 +5,24 @@
5
language: go
6
7
go:
8
- - 1.2.2
+ - 1.2
9
- 1.3
10
- - tip
11
12
matrix:
13
fast_finish: true
14
15
before_install:
16
- go get code.google.com/p/go.tools/cmd/vet
17
- - go get -v github.com/golang/lint/golint
18
- - go get -v code.google.com/p/go.tools/cmd/cover
19
- - go get -v github.com/mattn/goveralls
+ - go get code.google.com/p/go.tools/cmd/cover
+ - go get github.com/golang/lint/golint
+ - go get github.com/mattn/goveralls
20
21
install:
22
- go get -d -v ./... && go build -v ./...
23
24
script:
25
- go vet -x ./...
26
- - $HOME/gopath/bin/golint .
+ - $HOME/gopath/bin/golint ./...
27
- go test -v ./...
28
- go test -covermode=count -coverprofile=profile.cov .
29
0 commit comments