Skip to content

Commit 78a0f6b

Browse files
authored
fix travis (new golint path) (#22)
* fix travis (new golint path) * for now remove linting on Go 1.8 test run
1 parent 0a4473c commit 78a0f6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ go:
1111

1212
install:
1313
- go get -d -t ./...
14-
- go get -u github.com/golang/lint/...
14+
- if [[ ! $TRAVIS_GO_VERSION = 1.8* ]]; then go get -u golang.org/x/lint/golint ; fi
1515

1616
script:
17-
- golint ./...
17+
- if [[ ! $TRAVIS_GO_VERSION = 1.8* ]]; then golint ./... ; fi
1818
- go vet ./...
1919
- go test -v -race -cover ./...

0 commit comments

Comments
 (0)