13 lines
210 B
YAML
13 lines
210 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.11.x
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
before_install:
|
||
|
- go get -t -v ./...
|
||
|
script:
|
||
|
- go test -v -race -covermode=atomic -coverprofile=coverage.txt
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|