agent/.travis.yml

19 lines
266 B
YAML
Raw Normal View History

2020-12-28 22:46:33 +08:00
language: go
go:
2020-12-28 23:12:11 +08:00
- 1.12.x
- 1.13.x
- 1.14.x
2020-12-28 22:46:33 +08:00
- 1.15.x
- tip
before_install:
2020-12-29 15:28:23 +08:00
- cd machinery
2020-12-28 22:46:33 +08:00
- go mod download
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)