From f95d37b933402386b0e971c2f02384c712119501 Mon Sep 17 00:00:00 2001 From: cbeimers113 Date: Sun, 23 Jul 2023 15:38:09 -0400 Subject: [PATCH] Remove staticcheck --- .github/workflows/gobuild.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gobuild.yml b/.github/workflows/gobuild.yml index 1323858..7e3aeec 100644 --- a/.github/workflows/gobuild.yml +++ b/.github/workflows/gobuild.yml @@ -15,22 +15,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - + - name: Setup Go uses: actions/setup-go@v2 with: go-version: '1.18' - - - name: Install Dependencies - run: | - go get honnef.co/go/tools/cmd/staticcheck - go install honnef.co/go/tools/cmd/staticcheck - go mod tidy - + - name: Lint & Vet run: | go vet . - staticcheck . - name: Validate Build run: go build .