From 09a70a5141aa899e58ef03665a4953e4f12f5d00 Mon Sep 17 00:00:00 2001 From: Vibhor Phalke Date: Sat, 18 Jan 2025 04:17:19 +0530 Subject: [PATCH] feat: add linter pipeline for go-grpc app Signed-off-by: Vibhor Phalke --- .github/workflows/golangci-lint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 08fa2d7..f568421 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -17,7 +17,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} cancel-in-progress: true - jobs: golangci: name: lint @@ -31,6 +30,7 @@ jobs: - fasthttp-postgres - gin-mongo - gin-redis + - go-grpc - go-jwt - go-twilio - graphql-sql @@ -41,12 +41,12 @@ jobs: - S3-Keploy - sse-svelte - users-profile - + steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: - go-version: '1.21' + go-version: "1.21" cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v3 @@ -63,4 +63,4 @@ jobs: only-new-issues: true # Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'. - install-mode: "goinstall" \ No newline at end of file + install-mode: "goinstall"