From f482e3dffd1df0f54a13fe99b9c2c4e305640d12 Mon Sep 17 00:00:00 2001 From: pputman12 Date: Fri, 13 Sep 2024 12:20:17 -0500 Subject: [PATCH] remove static check from go tests as its causing issues with any go package that specifies a minor version number --- .github/workflows/go-tests.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/go-tests.yaml b/.github/workflows/go-tests.yaml index d105a4e..f9e5816 100644 --- a/.github/workflows/go-tests.yaml +++ b/.github/workflows/go-tests.yaml @@ -42,10 +42,6 @@ jobs: working-directory: ${{ env.GO_WORKING_DIRECTORY }} run: go vet ./... - - name: Install staticcheck - working-directory: ${{ env.GO_WORKING_DIRECTORY }} - run: go install honnef.co/go/tools/cmd/staticcheck@latest - - name: Run staticcheck working-directory: ${{ env.GO_WORKING_DIRECTORY }} run: staticcheck ./...