1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
2018-08-21 20:19:13 -04:00

27 lines
495 B
YAML

language: go
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10.x"
- "tip"
env:
- "PATH=/home/travis/gopath/bin:$PATH"
install:
- go get -v -t .
script:
- go get -u github.com/golang/lint/golint
- golint ./... | grep -v vendor/
- make
- scripts/check-code-generation-ran.sh
# PR's don't have access to Travis EnvVars with DDog API Keys. Skip acceptance tests on PR.
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then make testacc; fi'
matrix:
allow_failures:
- go: tip