Skip to content

Commit 854c423

Browse files
committed
Merge pull request #24 from mboersma/dont-test-golang-tip
chore(ci): stop testing golang "tip" since "go vet|cover" broke
2 parents 4cb69f7 + 34a18d8 commit 854c423

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.travis.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,24 @@
55
language: go
66

77
go:
8-
- 1.2.2
8+
- 1.2
99
- 1.3
10-
- tip
1110

1211
matrix:
1312
fast_finish: true
1413

1514
before_install:
1615
- 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
16+
- go get code.google.com/p/go.tools/cmd/cover
17+
- go get github.com/golang/lint/golint
18+
- go get github.com/mattn/goveralls
2019

2120
install:
2221
- go get -d -v ./... && go build -v ./...
2322

2423
script:
2524
- go vet -x ./...
26-
- $HOME/gopath/bin/golint .
25+
- $HOME/gopath/bin/golint ./...
2726
- go test -v ./...
2827
- go test -covermode=count -coverprofile=profile.cov .
2928

0 commit comments

Comments
 (0)