summaryrefslogtreecommitdiff
path: root/vendor/github.com/99designs/go-keychain/.travis.yml
blob: 2fba2395cd71fde6763d0070549da9e8870930a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: go

os:
    - osx
    - linux

before_install:
  - go get golang.org/x/lint/golint

script:
  - go vet ./...
  - golint ./...
  - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.16.0
  - golangci-lint run
  - go test -tags skipsecretserviceintegrationtests ./...

go:
  - 1.10.x
  - 1.11.x
  - 1.12.x