2018-10-24 13:15:06 +00:00
|
|
|
language: go
|
|
|
|
sudo: false
|
2019-02-06 21:41:25 +00:00
|
|
|
|
2018-10-24 13:15:06 +00:00
|
|
|
go:
|
2020-11-19 14:02:19 +00:00
|
|
|
- 1.14.x
|
|
|
|
- 1.15.x
|
2018-10-24 13:15:06 +00:00
|
|
|
- tip
|
|
|
|
|
2020-02-17 21:13:33 +00:00
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2018-10-24 13:15:06 +00:00
|
|
|
|
|
|
|
script:
|
2020-02-17 21:13:33 +00:00
|
|
|
- go generate ./... && test `git ls-files --modified | wc -l` = 0
|
2019-02-06 21:41:25 +00:00
|
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
2018-10-24 13:15:06 +00:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|