1language: go
2sudo: false
3
4matrix:
5  include:
6    - go: "1.9"
7    - go: "1.10"
8    - go: "tip"
9
10script:
11  - go test -race ./...
12