From e5f88f1689486c8207d4460d12d569a28b7f34e3 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Wed, 7 Feb 2024 15:01:00 -0800 Subject: [PATCH] Removing lint, for now This repo will probably want to be outfitted with hcp-checks, which includes a linter. --- .github/workflows/go.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e94508c7..05f27328 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,10 +30,6 @@ jobs: go mod tidy git diff --exit-code -- go.mod go.sum - - name: Lint # Check syntax with the linter - uses: golangci/golangci-lint-action@v3 - run: make go/lint - - name: Test # Run the golang tests! run: make test