1sudo: false
2language: go
3go:
4  - 1.9.x
5  - 1.10.x
6  - 1.11.x
7script:
8  - gofmt -l .
9  - go tool vet .
10  - go test -coverprofile=coverage.txt -covermode=atomic
11after_success:
12  - bash <(curl -s https://codecov.io/bash)
13