diff --git a/.github/workflows/operator-ci.yaml b/.github/workflows/operator-ci.yaml index fbdcd1961..f9322b585 100644 --- a/.github/workflows/operator-ci.yaml +++ b/.github/workflows/operator-ci.yaml @@ -73,15 +73,12 @@ jobs: with: go-version: ${{ env.GOLANG_VERSION }} - # Populate the Go module cache by downloading dependencies - name: Download Go modules run: go mod download - # Add a step to check the available disk space - name: Check disk space run: df -h - # List files in the Go module cache directory - name: List Go module cache run: ls -la $(go env GOPATH)/pkg/mod diff --git a/.golangci.yml b/.golangci.yml index 2a38a4fa8..c6a6ec72f 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -6,11 +6,12 @@ linters-settings: gofmt: simplify: true -# linters: -# enable-all: true -# disable: -# - errcheck -# - tagliatelle +linters: + disable: + - errcheck + - tagliatelle + - ineffassign + # Exclude the files that are causing the errors issues: exclude-rules: