2019-09-27 09:08:22 -04:00
|
|
|
env:
|
|
|
|
- USER=travis GO111MODULE=off
|
|
|
|
|
|
|
|
os:
|
|
|
|
- osx
|
|
|
|
|
|
|
|
language: go
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2020-02-14 11:42:29 -05:00
|
|
|
jobs:
|
2019-09-27 09:08:22 -04:00
|
|
|
fast_finish: true
|
2020-02-14 11:42:29 -05:00
|
|
|
include:
|
|
|
|
- go: "1.13.x"
|
|
|
|
name: "go test"
|
|
|
|
script:
|
|
|
|
- df -h
|
|
|
|
- travis_wait make ci
|
|
|
|
- go: "1.13.x"
|
|
|
|
name: "go lint"
|
|
|
|
script: travis_wait make ci-lint
|
|
|
|
|