From b2fcac3b1d84e727b69eaa3398e5d049ae18c8c4 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Thu, 6 Oct 2022 21:58:20 +0200 Subject: [PATCH] ci/cd fixes --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6303f46..303b906 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,7 @@ steps: image: golang:latest commands: - go install golang.org/x/lint/golint@latest - - golint ./src/internal/... + - golint ./src/... volumes: - name: gopath path: /go @@ -24,7 +24,7 @@ steps: - name: analyze image: golang:latest commands: - - go vet ./src/internal/... + - cd src && go vet ./... volumes: - name: gopath path: /go