File: .travis.yml

package info (click to toggle)
golang-github-mdlayher-ethernet 0.0~git20220221.529eae5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, experimental, sid, trixie
  • size: 120 kB
  • sloc: makefile: 3
file content (15 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: go
go:
  - 1.x
os:
  - linux
before_install:
  - go get golang.org/x/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 ./...