dasy/.travis.yml

26 lines
320 B
YAML

notifications:
email: false
language: go
install: true
env:
- GO111MODULE=on
before_script:
- make install-linter
matrix:
include:
- go: "1.11.x"
env: GOFLAGS=-mod=vendor
script:
- make lint
- make test
- go: "1.12.x"
env: GOFLAGS=-mod=vendor
script:
- make lint
- make test