blob: 556aec780a564b5e2ef5d7a173d4295d386a8ac4 (
plain) (
tree)
|
|
language: go
go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- master
stages:
- lint
- test
jobs:
include:
- stage: lint
script:
- go get golang.org/x/lint/golint
- golint -set_exit_status
- go vet -v
- stage: test
script:
- go test -v
matrix:
allow_failures:
- go: master
fast_finish: true
|