blob: 2f19b4a757a94141dd474fd3bd908e425b7beae7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
language: go
go:
- 1.9.x
- 1.10.x
env:
- GOMAXPROCS=4 GORACE=halt_on_error=1
install:
- go get github.com/stretchr/testify/assert
- go get gopkg.in/gemnasium/logrus-airbrake-hook.v2
- go get golang.org/x/sys/unix
- go get golang.org/x/sys/windows
script:
- go test -race -v ./...
|