diff options
Diffstat (limited to '.github/workflows/linters.yml')
-rw-r--r-- | .github/workflows/linters.yml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml deleted file mode 100644 index ba6d0b9f..00000000 --- a/.github/workflows/linters.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Linters - -on: [push, pull_request] - -jobs: - golangci-lint: - name: Golang-CI (lint) - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Run linter - uses: golangci/golangci-lint-action@v2 # Action page: <https://github.com/golangci/golangci-lint-action> - with: - version: v1.43 # without patch version - only-new-issues: false # show only new issues if it's a pull request - args: --timeout=10m --build-tags=race |