aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/github.com/xanzy/go-gitlab/.travis.yml
blob: ee77c02ba7272320cba82b017c32ad95b39a3991 (plain) (tree)
1
2
3
4
5
6
7


            


          
          




















                                         
language: go

go:
  - 1.10.x
  - 1.11.x
  - 1.12.x
  - 1.13.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