status-console-client/.travis.yml

30 lines
386 B
YAML
Raw Normal View History

2019-02-11 09:34:24 +01:00
notifications:
email: false
2019-02-11 09:40:43 +01:00
2019-02-11 09:34:24 +01:00
language: go
2019-02-11 09:40:43 +01:00
install: true
env:
- GO111MODULE=on
before_script:
- make install-linter
2019-02-11 09:40:43 +01:00
matrix:
2019-02-11 09:34:24 +01:00
include:
2019-02-11 09:40:43 +01:00
- go: "1.10.x"
2019-02-11 09:34:24 +01:00
script:
2019-02-11 09:40:43 +01:00
- make lint-v110
- make test
2019-02-11 09:40:43 +01:00
- go: "1.11.x"
env: GOFLAGS=-mod=vendor
script:
- make lint
- make test
- go: "1.12.x"
env: GOFLAGS=-mod=vendor
2019-02-11 09:34:24 +01:00
script:
2019-02-11 09:40:43 +01:00
- make lint
- make test