cri-o/.travis.yml
Jonathan Yu 1a296ecf35 Build with "tip" version of Golang
This will give us early warning of changes in upstream Golang that
may affect us.

Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
2016-09-28 13:11:41 -07:00

21 lines
235 B
YAML

language: go
go:
- 1.6
- 1.7
- tip
sudo: required
services:
- docker
install:
- make install.tools
before_script:
- export PATH=$HOME/gopath/bin:$PATH
script:
- make .gitvalidation
- make lint
- make integration