From 351ea4bc50f0261d757cb4acc9e6711b469ea26c Mon Sep 17 00:00:00 2001 From: Kieran Date: Mon, 25 Mar 2024 11:08:53 +0100 Subject: [PATCH] Remove golang linter It wastes so much time --- .github/workflows/linter-go.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/linter-go.yaml b/.github/workflows/linter-go.yaml index 79878953..8f5fe962 100644 --- a/.github/workflows/linter-go.yaml +++ b/.github/workflows/linter-go.yaml @@ -37,33 +37,3 @@ jobs: VALIDATE_OPENAPI: true VALIDATE_YAML: true GITHUB_TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }} - - golang: - name: Lint Golang files - runs-on: ubuntu-latest - timeout-minutes: 15 - - steps: - - name: Setup go - uses: actions/setup-go@v3 - with: - go-version: "^1.19.0" - - - name: Checkout Code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Configure git for private modules - env: - TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }} - run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/vimeda".insteadOf "https://github.com/vimeda" - - - name: Linter - uses: golangci/golangci-lint-action@v3 - with: - version: latest - only-new-issues: true - args: -c ./.github/linters/.golangci.yaml - env: - GITHUB_TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }}