status-console-client/.travis.yml

28 lines
404 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.11.x"
env: GOFLAGS=-mod=vendor
script:
- make lint
2019-04-12 16:53:26 +02:00
# fails without -a
- go test -a ./... # 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
2019-04-12 16:53:26 +02:00
# fails without -a
- go test -a ./... # make test