From b07d5c6daa4ed756646e33f1e7523034cd964652 Mon Sep 17 00:00:00 2001 From: Eddie Knight Date: Wed, 25 Oct 2023 07:28:17 -0500 Subject: [PATCH] fix: Remove failing lint step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit golint has been deprecated for a while, and really shouldn't be in the wireframe that this was built from— making a note to correct this over there as well. --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 690220a..8a63570 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,6 @@ jobs: run: | go mod download go get -t . - - - name: Lint - run: | - golint -set_exit_status ./... - name: Vet run: |