15 lines
259 B
YAML
15 lines
259 B
YAML
language: go
|
|
go:
|
|
- 1.x
|
|
notificaitons:
|
|
email:
|
|
recipients: dave@brophy.uk
|
|
on_failure: always
|
|
install:
|
|
- go get -u github.com/dave/courtney
|
|
- go get -t -v ./...
|
|
script:
|
|
- courtney -e
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|