Bump github.com/nicklaw5/helix from 1.24.4 to 1.25.0 #898
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
golint: | |
name: golint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: golint | |
uses: reviewdog/action-golangci-lint@v2.0.3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
golangci_lint_flags: "--disable-all -E golint" | |
level: warning # GitHub Status Check won't become failure with this level. | |
errcheck: | |
name: errcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: errcheck | |
uses: reviewdog/action-golangci-lint@v2.0.3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
golangci_lint_flags: "--disable-all -E errcheck" | |
misspell: | |
name: misspell | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: misspell | |
uses: reviewdog/action-misspell@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
locale: "US" | |
# ignore the chat handlers file cause it has many typos | |
exclude: pkg/chatbot/handlers.go |