Skip to content
.travis.yml 233 B
Newer Older
language: go

go:
  - 1.12
  - 1.13

env:
  - GO111MODULE=on

script:
  - go test ./... -v -coverprofile=coverage.txt -covermode=atomic
  - go tool cover -func=coverage.txt

after_success:
  - bash <(curl -s https://codecov.io/bash)