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

This commit is contained in:
Piotr Biernat 2022-10-06 21:58:20 +02:00
parent fc668e633b
commit b2fcac3b1d

View File

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