ci/cd test
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Piotr Biernat 2022-10-06 20:16:42 +02:00
parent dc58c80074
commit 2245bf1ba6

View File

@ -7,7 +7,7 @@ steps:
image: golang:latest
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- staticcheck ./src/...
- staticcheck ./src/internal/...
volumes:
- name: gopath
path: /go
@ -16,7 +16,7 @@ steps:
image: golang:latest
commands:
- go install golang.org/x/lint/golint@latest
- golint ./src/...
- golint ./src/internal/...
volumes:
- name: gopath
path: /go
@ -24,7 +24,7 @@ steps:
- name: analyze
image: golang:latest
commands:
- go vet ./src/...
- go vet ./src/internal/...
volumes:
- name: gopath
path: /go