...

Text file src/github.com/gin-contrib/sse/.travis.yml

Documentation: github.com/gin-contrib/sse

     1language: go
     2sudo: false
     3go:
     4  - 1.8.x
     5  - 1.9.x
     6  - 1.10.x
     7  - 1.11.x
     8  - 1.12.x
     9  - master
    10
    11git:
    12  depth: 10
    13
    14matrix:
    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
    22script:
    23  - go test -v -covermode=count -coverprofile=coverage.out
    24
    25after_success:
    26  - bash <(curl -s https://codecov.io/bash)

View as plain text