1language: go
2
3go:
4- 1.12
5
6env:
7- GO111MODULE=on
8
9branches:
10  only:
11  - master
12
13before_install:
14- go get -u golang.org/x/lint/golint
15
16script:
17- make test-fmt
18- make lint
19- make test