Skip to content

Commit

Permalink
Update Travis config for 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Sep 10, 2016
1 parent ccee6e9 commit 496a3cb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -4,19 +4,20 @@ go:
- 1.4
- 1.5
- 1.6
- 1.7
- tip

matrix:
allow_failures:
- go: tip

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

script:
- go test -race -cpu 1,4 -v
- go test -race -v -tags appengine
- "if [[ $TRAVIS_GO_VERSION == 1.6 ]]; then go vet ./...; fi"
- "if [[ $TRAVIS_GO_VERSION == 1.6 ]]; then golint .; fi"
- "if [[ $TRAVIS_GO_VERSION == 1.7 ]]; then go vet ./...; fi"
- "if [[ $TRAVIS_GO_VERSION == 1.7 ]]; then golint .; fi"

sudo: false

0 comments on commit 496a3cb

Please sign in to comment.