github.com/frankkopp/FrankyGo@v1.0.3/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.14.1
     5  
     6  before_install:
     7    - go get -t -v ./...
     8  
     9  script:
    10    - go test -short -coverprofile=coverage.txt -covermode=atomic ./...
    11  
    12  after_success:
    13    - bash <(curl -s https://codecov.io/bash)