...

Text file src/github.com/mdlayher/arp/.travis.yml

Documentation: github.com/mdlayher/arp

     1language: go
     2go:
     3  - 1.x
     4os:
     5  - linux
     6before_install:
     7  - go get golang.org/x/lint/golint
     8  - go get honnef.co/go/tools/cmd/staticcheck
     9  - go get -d ./...
    10script:
    11  - go build -tags=gofuzz ./...
    12  - go vet ./...
    13  - staticcheck ./...
    14  - golint -set_exit_status ./...
    15  - go test -v -race ./...

View as plain text