18 lines
307 B
YAML
Raw Normal View History

2019-10-01 12:22:30 -03:00
language: go
sudo: false
2020-11-09 10:05:29 -03:00
2019-10-01 12:22:30 -03:00
go:
2020-11-09 10:05:29 -03:00
- "1.12.x"
- "1.13.x"
2019-10-01 12:22:30 -03:00
- tip
env:
2020-11-09 10:05:29 -03:00
- GO111MODULE=on
2019-10-01 12:22:30 -03:00
script:
2020-11-09 10:05:29 -03:00
- go generate ./... && test `git ls-files --modified | wc -l` = 0
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
2019-10-01 12:22:30 -03:00
after_success:
- bash <(curl -s https://codecov.io/bash)