Codebase list golang-github-nlopes-slack / 2d81bca .travis.yml
2d81bca

Tree @2d81bca (Download .tar.gz)

.travis.yml @2d81bcaraw · history · blame

language: go

go:
    - 1.4
    - 1.5
    - 1.6
    - 1.7
    - tip

before_install:
  - export PATH=$HOME/gopath/bin:$PATH

script:
  - go test -race ./...
  - go test -cover ./...

matrix:
    allow_failures:
        - go: tip

git:
  depth: 10