17 lines
334 B
YAML
17 lines
334 B
YAML
# For Travis to run this for pending PRs and pushes to the master branch, make
|
|
# sure to add a Webhook in the Github repository Settings to send all events to
|
|
# https://notify.travis-ci.org
|
|
language: go
|
|
|
|
go:
|
|
- 1.14.x
|
|
- 1.15.x
|
|
|
|
env:
|
|
global:
|
|
- GOPROXY=https://proxy.golang.org
|
|
- GO111MODULE=on
|
|
|
|
script:
|
|
- 'internal/test.sh'
|