diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index bad29c5abd..ddf65e887d 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -81,7 +81,7 @@ jobs: go-modules: name: Setup go - runs-on: ubuntu-latest-4-cores + runs-on: ubuntu-latest steps: - name: Checkout repo @@ -96,7 +96,7 @@ jobs: check-imports: name: Check imports needs: go-modules - runs-on: ubuntu-latest-4-cores + runs-on: ubuntu-latest steps: - name: Checkout repo @@ -112,7 +112,7 @@ jobs: lint: name: Lint code - runs-on: ubuntu-latest-4-cores + runs-on: ubuntu-latest needs: go-modules steps: @@ -125,10 +125,7 @@ jobs: check-latest: false cache: true - name: Run linter - uses: golangci/golangci-lint-action@v3 - with: - skip-pkg-cache: true - only-new-issues: true + run: make lint unit-tests: name: Unit tests diff --git a/.golangci.yml b/.golangci.yml index b0347c3e1d..c8018a86c5 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,7 +20,7 @@ linters: - misspell # - staticcheck - unconvert - - unused + # - unused # - gosec # - errcheck