15 lines
269 B
YAML
15 lines
269 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- tip
|
||
|
|
||
|
before_install:
|
||
|
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
||
|
- dep ensure
|
||
|
|
||
|
script:
|
||
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|