Files
tendermint/.github/workflows/lint.yaml
Marko b7c2d7a977 lint: enable nolintlinter, disable on tests
## Description
- enable nolintlint
- disable linting on tests

Closes: #XXX
2020-05-04 07:49:53 +00:00

14 lines
359 B
YAML

name: Lint
on: [pull_request]
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: golangci-lint
uses: reviewdog/action-golangci-lint@master
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
golangci_lint_flags: "--timeout 30m"