summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml
blob: 83ab8f59dd1ad992d7379ac5d3b52ccdc0d84d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go
sudo: false
go:
  - 1.3
  - 1.4
  - 1.5
  - tip
install:
  - go get golang.org/x/tools/cmd/vet
script:
  - go get -t -v ./...
  - diff -u <(echo -n) <(gofmt -d -s .)
  - go tool vet .
  - go test -v -race ./...