1language: go
2
3go:
4 - 1.11.x
5 - 1.12.x
6 - 1.13.x
7
8env:
9 - GO111MODULE=on
10
11script:
12 - go build
13 - go test -v -bench=. -race -coverprofile=coverage.txt -covermode=atomic ./...
14
15after_success:
16 - bash <(curl -s https://codecov.io/bash)