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