From b791d0c88f35030fca7d849bbf93ac7585f8287a Mon Sep 17 00:00:00 2001 From: Johannes Eiglsperger Date: Mon, 30 Sep 2024 14:41:11 +0200 Subject: [PATCH] Remove staticcheck, which is part of golangci-lint --- .github/workflows/staticcheck.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/staticcheck.yml diff --git a/.github/workflows/staticcheck.yml b/.github/workflows/staticcheck.yml deleted file mode 100644 index 9040dc7..0000000 --- a/.github/workflows/staticcheck.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: staticcheck -on: - push: - branches: - - main - pull_request: - branches: - - main - workflow_dispatch: -concurrency: - group: "${{ github.workflow }}-$${{ github.pull_request.number || github.run_id }}" - cancel-in-progress: true -jobs: - staticcheck: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version-file: "go.mod" - check-latest: true - - run: go install honnef.co/go/tools/cmd/staticcheck@latest - - run: $(go env GOPATH)/bin/staticcheck ./...