summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/xanzy/go-gitlab/.travis.yml
blob: 5e422eb8df18bb94304c77bdf02b6d899713200a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: go

arch:
  - amd64
  - ppc64le

go:
  - 1.13.x
  - 1.14.x
  - 1.x
  - master

before_install:
  - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/v1.35.0/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.35.0

script:
  - golangci-lint run
  - go test -v

matrix:
  allow_failures:
    - go: master
  fast_finish: true