github.com/dgallion1/notify@v0.9.3-0.20201128171805-931189d936e0/.travis.yml (about)

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