This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues/pull-requests.
mumbledj/.travis.yml

23 lines
291 B
YAML
Raw Normal View History

2016-06-21 02:16:05 +02:00
language: go
sudo: false
go:
- 1.5
- 1.6
- tip
before_install:
- go get github.com/Masterminds/glide
2016-06-22 04:31:16 +02:00
- go get github.com/go-playground/overalls
2016-06-21 02:16:05 +02:00
script:
- make coverage
2016-06-21 02:16:05 +02:00
2016-06-22 04:01:21 +02:00
after_success:
2016-06-22 04:11:46 +02:00
- bash <(curl -s https://codecov.io/bash)
2016-06-22 04:01:21 +02:00
2016-06-21 02:16:05 +02:00
env:
global:
- GO15VENDOREXPERIMENT="1"