...

Text file src/github.com/gorilla/context/.travis.yml

Documentation: github.com/gorilla/context

     1language: go
     2sudo: false
     3
     4matrix:
     5  include:
     6    - go: 1.3
     7    - go: 1.4
     8    - go: 1.5
     9    - go: 1.6
    10    - go: 1.7
    11    - go: tip
    12  allow_failures:
    13    - go: tip
    14
    15script:
    16  - go get -t -v ./...
    17  - diff -u <(echo -n) <(gofmt -d .)
    18  - go vet $(go list ./... | grep -v /vendor/)
    19  - go test -v -race ./...

View as plain text