From 9caa33667cdf241bb85e13f973013ea035f26b45 Mon Sep 17 00:00:00 2001 From: Tinyblargon <76069640+Tinyblargon@users.noreply.github.com> Date: Thu, 15 Aug 2024 22:14:41 +0200 Subject: [PATCH] ci: remove golint the golint repository is archived and golint is nolonger maintained, we always ignore the errors anyways --- .github/workflows/go.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index eadb89d3..f9b72c76 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -64,21 +64,6 @@ jobs: - name: Run staticcheck run: staticcheck ./... - golint: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: ${{ env.GO_VERSION }} - check-latest: true - - name: Install golint - run: go install golang.org/x/lint/golint@latest - - name: Run golint - run: golint ./... - test: runs-on: ubuntu-latest steps: