1 sudo: false 2 language: go 3 go: 4 - 1.10.x 5 - 1.11.x 6 - master 7 8 go_import_path: golang.org/x/lint 9 10 install: 11 - go get -t -v ./... 12 13 script: 14 - go test -v -race ./... 15 16 matrix: 17 allow_failures: 18 - go: master 19 fast_finish: true 20