mg-transport-core/.travis.yml

14 lines
269 B
YAML
Raw Normal View History

2019-09-19 14:16:52 +03:00
language: go
2019-09-19 14:22:15 +03:00
env:
- GO111MODULE=on
2019-09-19 14:16:52 +03:00
go:
- '1.10'
- '1.11'
2019-09-19 14:22:15 +03:00
- '1.12'
- '1.13'
2019-09-19 14:16:52 +03:00
before_install:
2019-09-19 14:19:36 +03:00
- go mod tidy
2019-09-19 14:16:52 +03:00
script:
- go test ./... -v -cpu 2 -race -cover -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)