Skip to content

Commit

Permalink
[build] Run CI for Go 1.7.x - 1.10.x (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
elithrar authored May 22, 2018
1 parent 90b0c59 commit 05b4a73
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ sudo: false

matrix:
include:
- go: 1.3
- go: 1.4
- go: 1.5
- go: 1.6
- go: "1.x"
env: "LATEST=true"
- go: "1.3.x"
- go: "1.4.x"
- go: "1.5.x"
- go: "1.6.x"
- go: "1.7.x"
- go: "1.8.x"
- go: "1.9.x"
- go: "1.10.x"
- go: tip
allow_failures:
- go: tip
Expand All @@ -17,5 +23,6 @@ install:
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v /vendor/)
- if [ "${LATEST}" = "true" ]; then go vet ./...; fi
- go test -v -race ./...

0 comments on commit 05b4a73

Please sign in to comment.