Skip to content

Commit c5bec84

Browse files
committed
Run go vet and golint with 1.10
1 parent 868e9c7 commit c5bec84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ go:
1111
- tip
1212

1313
before_install:
14-
- "if [[ $TRAVIS_GO_VERSION == 1.7 ]]; then go get -v github.com/golang/lint/golint; fi"
14+
- "if [[ $TRAVIS_GO_VERSION == 1.10 ]]; then go get -v github.com/golang/lint/golint; fi"
1515

1616
install:
1717
- go get -v -t ./...
1818

1919
script:
2020
- go test -race -cpu 1,4 -v
2121
- go test -race -v -tags appengine
22-
- "if [[ $TRAVIS_GO_VERSION == 1.7 ]]; then go vet ./...; fi"
23-
- "if [[ $TRAVIS_GO_VERSION == 1.7 ]]; then golint .; fi"
22+
- "if [[ $TRAVIS_GO_VERSION == 1.10 ]]; then go vet ./...; fi"
23+
- "if [[ $TRAVIS_GO_VERSION == 1.10 ]]; then golint .; fi"
2424

2525
sudo: false

0 commit comments

Comments
 (0)