17 lines
336 B
YAML
17 lines
336 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.x
|
||
|
os:
|
||
|
- linux
|
||
|
sudo: required
|
||
|
before_install:
|
||
|
- go get github.com/golang/lint/golint
|
||
|
- go get honnef.co/go/tools/cmd/staticcheck
|
||
|
- go get -d ./...
|
||
|
script:
|
||
|
- go build -tags=gofuzz ./...
|
||
|
- go vet ./...
|
||
|
- staticcheck ./...
|
||
|
#- golint -set_exit_status ./...
|
||
|
- go test -v -race -tags=integration ./...
|