* Add Go 1.10 to .travis.yml. * Add quotes to Go versions in .travis.yml, because unquoted 1.10 is interpreted as Go 1.1. * Change .travis.yml references from 'tip' to 'master'. 'tip' is a legacy reference coming from the days when the Go project used mercurial instead of git.
13 lines
171 B
YAML
13 lines
171 B
YAML
language: go
|
|
go:
|
|
- "1.7"
|
|
- "1.8"
|
|
- "1.9"
|
|
- "1.10"
|
|
- "master"
|
|
matrix:
|
|
allow_failures:
|
|
- go: "master"
|
|
script:
|
|
go test -v -race -cpu=1,2,4 -bench . -benchmem ./...
|