From d75fd2b30946f5b4ec62a76b5149f4a596a2f015 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 3 Dec 2024 15:00:17 +0100 Subject: [PATCH] remove staticcheck --- .github/workflows/push.yml | 1 - Makefile | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 501f00233..fae751d61 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -45,7 +45,6 @@ jobs: echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV echo "$(go env GOPATH)/bin" >> $GITHUB_PATH go install gotest.tools/gotestsum@latest - go install honnef.co/go/tools/cmd/staticcheck@latest - name: Pull external libraries run: | diff --git a/Makefile b/Makefile index 243a91191..aada2f8eb 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ fmt: @gofmt -w $(shell find . -type f -name '*.go' -not -path "./vendor/*") lint: vendor - @echo "✓ Linting source code with https://staticcheck.io/ ..." - @staticcheck ./... + @echo "✓ Linting source code with https://golangci-lint.run/ ..." + @golangci-lint run ./... test: lint @echo "✓ Running tests ..."