From 284e85582df2c2e41f09248dc7588078c6f5863c Mon Sep 17 00:00:00 2001 From: shreyasbhat0 Date: Fri, 16 Aug 2024 16:07:01 +0530 Subject: [PATCH] chore: try fix go lint --- .github/workflows/go-lint.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/go-lint.yaml b/.github/workflows/go-lint.yaml index fababe9b..9bd6efb8 100644 --- a/.github/workflows/go-lint.yaml +++ b/.github/workflows/go-lint.yaml @@ -19,10 +19,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-go@v3 with: go-version-file: go.mod + + - name: Compile Protobuf + run: | + make proto-gen + make lint-ci - name: golangci-lint uses: golangci/golangci-lint-action@v3