22 lines
348 B
YAML
22 lines
348 B
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- 1.x
|
|
- master
|
|
|
|
before_install:
|
|
- go get -t -v ./...
|
|
|
|
script:
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- paul.vanbrouwershaven@digitorus.com
|
|
on_success: never
|
|
on_failure: change
|