github.com/hellobchain/third_party@v0.0.0-20230331131523-deb0478a2e52/sse/.travis.yml (about)

     1  language: go
     2  sudo: false
     3  go:
     4    - 1.8.x
     5    - 1.9.x
     6    - 1.10.x
     7    - 1.11.x
     8    - 1.12.x
     9    - master
    10  
    11  git:
    12    depth: 10
    13  
    14  matrix:
    15    fast_finish: true
    16    include:
    17    - go: 1.11.x
    18      env: GO111MODULE=on
    19    - go: 1.12.x
    20      env: GO111MODULE=on
    21  
    22  script:
    23    - go test -v -covermode=count -coverprofile=coverage.out
    24  
    25  after_success:
    26    - bash <(curl -s https://codecov.io/bash)