build(deps): bump cosmos-sdk v0.50.9 (backport #4292) (#4296) #11332
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: | |
pull_request: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- main | |
- release/* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint Go code | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
steps: | |
- uses: actions/[email protected] | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/*.go | |
**/*.plush | |
go.mod | |
go.sum | |
- uses: actions/setup-go@v4 | |
if: env.GIT_DIFF | |
with: | |
go-version-file: go.mod | |
cache: false | |
- uses: golangci/golangci-lint-action@v3 | |
if: env.GIT_DIFF | |
with: | |
version: v1.54.2 | |
install-mode: goinstall | |
args: --timeout 10m | |
github-token: ${{ secrets.github_token }} |