diff --git a/.travis.yml b/.travis.yml index fd9b643..f5f0d88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,14 @@ language: go go: - 1.15 - -os: - - centos - -script: >- - go test -v ./... - go build ./... + - tip + +before_install: + - go get -t -v ./... + +script: + - go test -race -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash)