github.com/mmirolim/gtr@v0.3.0/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.13
     5  
     6  before_install:
     7    - go mod download
     8  
     9  script:
    10    # run tests on a standard platform
    11    - go test -v -coverprofile=coverage.txt -covermode=atomic
    12  
    13  after_success:
    14    - bash <(curl -s https://codecov.io/bash)