82dbb34c9c
* vendor update: go-gitlab to v0.31.0 * migrate client init to v0.31.0 * refactor
26 lines
341 B
YAML
Vendored
26 lines
341 B
YAML
Vendored
language: go
|
|
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.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
|