Skip to content

Commit

Permalink
Merge pull request gorilla#113 from elithrar/patch-1
Browse files Browse the repository at this point in the history
Update .travis.yml to build Go 1.6
  • Loading branch information
garyburd committed Mar 2, 2016
2 parents d1d4086 + ac929f8 commit be42fcd
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
language: go
sudo: false

go:
- 1.1
- 1.2
- tip
matrix:
include:
- go: 1.1
- go: 1.2
- go: 1.3
- go: 1.4
- go: 1.5
- go: 1.6
- go: tip

install:
- go get golang.org/x/tools/cmd/vet

script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet .
- go test -v -race ./...

0 comments on commit be42fcd

Please sign in to comment.