2018-05-17 17:26:18 +03:00
|
|
|
language: go
|
2020-04-08 13:11:46 +03:00
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2018-05-17 17:26:18 +03:00
|
|
|
go:
|
2018-08-31 11:13:51 +03:00
|
|
|
- '1.11'
|
2020-04-07 16:41:42 +03:00
|
|
|
- '1.12'
|
|
|
|
- '1.13'
|
|
|
|
- '1.14'
|
2018-05-17 17:26:18 +03:00
|
|
|
before_install:
|
2020-04-07 16:39:06 +03:00
|
|
|
- go mod tidy
|
2020-04-08 13:11:46 +03:00
|
|
|
script:
|
|
|
|
- go test ./... -v -cpu 2 -timeout 2m -race -cover -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|