github.com/mattolenik/notify@v0.9.1/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4   - 1.10.x
     5   - tip
     6  
     7  os:
     8   - linux
     9   - osx
    10  
    11  matrix:
    12    include:
    13     - os: osx
    14       go: 1.7.5
    15       env:
    16        - GOFLAGS="-tags kqueue"
    17    allow_failures:
    18     - go: tip
    19  
    20  env:
    21    global:
    22     - GOBIN=$HOME/bin
    23     - PATH=$HOME/bin:$PATH
    24  
    25  install:
    26   - go get -t -v ./...
    27  
    28  script:
    29   - "(go version | grep -q 1.4) || go tool vet -all ."
    30   - go install $GOFLAGS ./...
    31   - go test -v -timeout 60s -race $GOFLAGS ./...