tartrazine/.travis.yml

23 lines
370 B
YAML
Raw Normal View History

2017-04-05 17:21:01 +00:00
language: go
go:
- 1.8
- tip
matrix:
allow_failures:
- go: tip
install:
- rm -rf $GOPATH/src/gopkg.in/src-d
- mkdir -p $GOPATH/src/gopkg.in/src-d
2017-06-08 07:27:27 +00:00
- ln -s $PWD $GOPATH/src/gopkg.in/src-d/enry.v1
- cd $GOPATH/src/gopkg.in/src-d/enry.v1
2017-04-05 17:21:01 +00:00
- go get -v -t ./...
script:
2017-06-27 08:42:46 +00:00
- make test-coverage
2017-06-21 08:45:27 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)