22 lines
238 B
YAML
22 lines
238 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.6
|
||
|
- 1.5.3
|
||
|
|
||
|
sudo: required
|
||
|
|
||
|
services:
|
||
|
- docker
|
||
|
|
||
|
before_install:
|
||
|
- make install.tools
|
||
|
- docker pull vbatts/pandoc
|
||
|
|
||
|
install: true
|
||
|
|
||
|
script:
|
||
|
- make .govet
|
||
|
- make .golint
|
||
|
- make .gitvalidation
|
||
|
- make docs
|