Codebase list golang-github-nlopes-slack / f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0 .travis.yml
f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0

Tree @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0 (Download .tar.gz)

.travis.yml @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0raw · history · blame

language: go

go:
    - 1.7.x
    - 1.8.x
    - 1.9.x
    - tip

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

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

matrix:
    allow_failures:
        - go: tip

git:
  depth: 10