Merge pull request #144 from things-go/dependabot/go_modules/github.c… #646
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: Lint | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
golang-ci: | |
name: GolangCi-Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: # BUG: typecheck error when enable all | |
args: --disable-all -E goimports,misspell,whitespace | |
version: latest |