mg-transport-core/.travis.yml

12 lines
259 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:
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:
2019-12-17 13:50:30 +03:00
- go test ./... -v -cpu 2 -timeout 2m -race -cover -coverprofile=coverage.txt -covermode=atomic
2019-09-19 14:16:52 +03:00
after_success:
- bash <(curl -s https://codecov.io/bash)