mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-06 20:11:08 +00:00
14 lines
359 B
YAML
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"
|