lint: official action (#6156)

* switch from review dog to official golangci action

* fix release

* disable nolintlint and wsl

* fix linting issues

* have name adhere to required

* add timeout

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Marko
2020-05-07 09:40:49 +00:00
committed by GitHub
co-authored by Alessio Treglia mergify[bot]
parent 9d022c17b7
commit 54ed8d7a2c
10 changed files with 26 additions and 26 deletions
+8 -6
View File
@@ -1,12 +1,14 @@
name: Lint
on: [pull_request]
jobs:
golangci-lint:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v1
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@master
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.26
args: --timeout 10m
github-token: ${{ secrets.github_token }}