summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/asaskevich/govalidator/.travis.yml
blob: 17c4d0a7107163430ee40fdd38d2fdd5f71ab3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dist: bionic
language: go
env: GO111MODULE=on GOFLAGS='-mod vendor'
install: true
email: false

go:
  - 1.10
  - 1.11
  - 1.12
  - 1.13
  - tip

before_script:
  - go install github.com/golangci/golangci-lint/cmd/golangci-lint
script:
  - golangci-lint run       # run a bunch of code checkers/linters in parallel
  - go test -v -race ./...  # Run all the tests with the race detector enabled