From 371a673f418a2219a09543d29b081626997832c8 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Wed, 26 Jul 2023 14:53:56 +0300 Subject: [PATCH] Remove linting from CI workflow --- .github/workflows/ci.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0648929d..94fe627d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,34 +177,3 @@ jobs: - name: Check spelling continue-on-error: true uses: crate-ci/typos@master - - Lint: - name: Lint - runs-on: ${{ matrix.os }} - - needs: SendCoverage - - env: - SRC_DIR: src/github.com/${{ github.repository }} - - strategy: - matrix: - os: [ 'ubuntu-latest', 'macos-latest' ] - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - path: ${{env.SRC_DIR}} - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.19.x' - cache-dependency-path: ${{env.SRC_DIR}}/go.sum - - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - working-directory: ${{env.SRC_DIR}} - args: --issues-exit-code=0 --timeout=3m --build-tags=unit