mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-02-16 21:03:13 +03:00
15 lines
362 B
YAML
15 lines
362 B
YAML
language: go
|
|
env:
|
|
- GO111MODULE=on
|
|
go:
|
|
- '1.12'
|
|
- '1.13'
|
|
- '1.14'
|
|
before_install:
|
|
- go mod tidy
|
|
script:
|
|
- go test ./... -v -cpu 2 -timeout 2m -race -cover -coverprofile=coverage.txt -covermode=atomic
|
|
- go get -v -u github.com/axw/gocov/gocov
|
|
- gocov convert ./coverage.txt | gocov report
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash) |