1language: go
2go:
3 - 1.8
4 - 1.9
5 - "1.10"
6 - "1.11"
7 - tip
8
9script:
10 - go test -v -race -parallel 5 -coverprofile=coverage.txt -covermode=atomic ./
11 - go test github.com/fortytw2/leaktest -run ^TestEmptyLeak$
12
13before_install:
14  - pip install --user codecov
15after_success:
16  - codecov
17