From b99b5f7838e43a4104354ad92a6a1774302ee1f9 Mon Sep 17 00:00:00 2001 From: Cosmin Cojocar Date: Mon, 14 Mar 2022 14:19:29 +0100 Subject: [PATCH] Fix the lint action after upgrade (#790) --- .github/workflows/ci.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b9f4ba..f11b020 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,17 +7,7 @@ on: branches: - master jobs: - golangci: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - version: latest test: - needs: [golangci] strategy: matrix: go_version: @@ -39,6 +29,10 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- + - name: lint + uses: golangci/golangci-lint-action@v3 + with: + version: latest - name: Run Tests run: make test coverage: