1language: go
2go:
3- "1.7"
4- "1.8"
5- "1.9"
6- "1.10"
7- "1.11"
8- "1.12"
9- "master"
10matrix:
11  allow_failures:
12      - go: "master"
13script:
14  - go test -v -race -cpu=1,2,4 -bench . -benchmem ./...
15  - go test -v -tags binary_log -race -cpu=1,2,4 -bench . -benchmem ./...
16