mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2024-11-22 05:06:04 +03:00
13 lines
258 B
YAML
13 lines
258 B
YAML
language: go
|
|
env:
|
|
- GO111MODULE=on
|
|
go:
|
|
- '1.11'
|
|
- '1.12'
|
|
- '1.13'
|
|
before_install:
|
|
- go mod tidy
|
|
script:
|
|
- go test ./... -v -cpu 2 -race -cover -coverprofile=coverage.txt -covermode=atomic
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash) |