25 lines
202 B
YAML
25 lines
202 B
YAML
env:
|
|
- USER=travis
|
|
|
|
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.7.4
|
|
- 1.8.3
|
|
- 1.9
|
|
|
|
install:
|
|
- make deps
|
|
|
|
script:
|
|
- GOMAXPROCS=2 make ci
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
matrix:
|
|
fast_finish: true
|