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