diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml deleted file mode 100644 index 12d69d8b344..00000000000 --- a/.github/workflows/golangci-lint.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: golangci-lint - -on: - push: - tags: - - v* - branches: - - master - pull_request: - -jobs: - golangci: - name: lint - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@v2 - - - name: golangci-lint - uses: golangci/golangci-lint-action@v2 - with: - # Version of golangci-lint to use in form of v1.2 or `latest` to use the latest version - version: latest - - # Optional: working directory, useful for monorepos - # working-directory: somedir - - # golangci-lint command line arguments. - args: --timeout=5m --verbose - - # If set to true and the action runs on a pull request - the action outputs only newly found issues - only-new-issues: true