spf13--cobra/.travis.yml

26 lines
457 B
YAML
Raw Normal View History

2013-09-24 12:39:05 -04:00
language: go
stages:
- lint
- test
go:
- 1.12.x
- 1.13.x
- tip
env: GO111MODULE=on
before_install: go get -u github.com/kyoh86/richgo
script:
- richgo test -v ./...
- go build
matrix:
2016-05-09 11:37:22 +02:00
allow_failures:
- go: tip
include:
- stage: lint
go: 1.13.x
before_install: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin latest
script: golangci-lint run -v