github.com/zerosnake0/jzon@v0.0.9-0.20230801092939-1b135cb83f7f/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4  #  - 1.10.x
     5  #  - 1.11.x
     6    - 1.12.x
     7    - 1.13.x
     8    - 1.14.x
     9    - 1.15.x
    10    - 1.16.x
    11    - 1.17.x
    12    - 1.18.x
    13    - tip
    14  
    15  env:
    16    - GO111MODULE=on
    17  
    18  script:
    19    - go test -tags debug -race -coverprofile=coverage.txt -covermode=atomic
    20  
    21  after_success:
    22    - bash <(curl -s https://codecov.io/bash)
    23  
    24  jobs:
    25    allow_failures:
    26      - if: branch != master
    27        go: tip
    28  
    29    exclude:
    30      - if: branch = master
    31        go: tip