1a296ecf35
This will give us early warning of changes in upstream Golang that may affect us. Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
21 lines
235 B
YAML
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
|