.travis.yml (243B)
1 language: go 2 3 go: 4 - 1.15.x 5 - master 6 7 arch: 8 - amd64 9 - ppc64le 10 11 before_install: 12 - go get -t -v ./... 13 14 script: 15 - go test -race -coverprofile=coverage.txt -covermode=atomic 16 17 after_success: 18 - bash <(curl -s https://codecov.io/bash)