Run golint during drone builds

This commit is contained in:
Erin Call
2019-12-09 15:27:56 -08:00
parent dad866582a
commit 446c6f1761
3 changed files with 7 additions and 3 deletions

View File

@@ -7,8 +7,10 @@ steps:
- name: test
image: golang:1.13
commands:
- go vet ./...
- go test ./...
- go test ./cmd/... ./internal/...
- go vet ./cmd/... ./internal/...
- go get -u golang.org/x/lint/golint
- golint ./cmd/... ./internal/...
- name: build
image: golang:1.13
commands: