8 lines
163 B
YAML
8 lines
163 B
YAML
language: go
|
|
|
|
script:
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|