Codebase list golang-github-nlopes-slack / run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main .travis.yml
run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main

Tree @run/49473463-c5d5-40ba-a0bc-8871ad989fb7/main (Download .tar.gz)

.travis.yml @run/49473463-c5d5-40ba-a0bc-8871ad989fb7/mainraw · history · blame

language: go

go:
    - 1.4
    - 1.5
    - 1.6
    - 1.7
    - 1.8
    - 1.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