Skip to content

Commit

Permalink
add .travis.yml (from gorilla/mux)
Browse files Browse the repository at this point in the history
  • Loading branch information
kisielk committed Jul 10, 2016
1 parent ffd5bdc commit 402cb13
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: go
sudo: false

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

install:
- # Skip

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

0 comments on commit 402cb13

Please sign in to comment.