17 lines
185 B
YAML
17 lines
185 B
YAML
|
language: go
|
||
|
sudo: false
|
||
|
go:
|
||
|
- 1.8
|
||
|
- tip
|
||
|
|
||
|
before_install:
|
||
|
- go get -u -t ./...
|
||
|
|
||
|
script:
|
||
|
- ./go.test.sh
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|
||
|
|
||
|
comment: off
|