From 3a15d7501150493617b2f84a6c81c5156961335c Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 30 Nov 2022 09:06:20 -0800 Subject: [PATCH] Remove golint from drone --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2d47d37..bbf0057 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,6 +10,7 @@ steps: - name: deps path: /go commands: + - go install honnef.co/go/tools/cmd/staticcheck@latest - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc - chmod a+x tor @@ -30,8 +31,7 @@ steps: - name: deps path: /go commands: - - go list ./... | xargs go vet - - go list ./... | xargs golint + - staticcheck ./... #Todo: fix all the lint errors and add `-set_exit_status` above to enforce linting - name: build-linux