2020-11-02 10:10:16 -05:00
|
|
|
arch:
|
|
|
|
- amd64
|
|
|
|
- ppc64le
|
|
|
|
|
2015-03-12 15:17:56 -07:00
|
|
|
language: go
|
2015-03-16 14:38:40 -07:00
|
|
|
go:
|
2020-08-27 20:04:53 -07:00
|
|
|
- 1.14.x
|
|
|
|
- 1.15.x
|
2017-06-07 11:10:09 -07:00
|
|
|
- tip
|
2020-01-01 22:27:00 +05:30
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2019-01-10 08:19:48 +09:00
|
|
|
install:
|
|
|
|
- go get -v golang.org/x/lint/golint
|
2015-03-16 14:38:40 -07:00
|
|
|
script:
|
2019-01-10 08:19:48 +09:00
|
|
|
- golint -set_exit_status ./...
|
2018-11-10 11:01:00 -08:00
|
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
|
2017-06-07 11:10:09 -07:00
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|
2016-02-20 08:11:02 -08:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|