chore(deps): bump github.com/cosmos/cosmos-sdk from 0.47.5 to 0.50.14 in /internal/wasmd/tests/system #7257
Workflow file for this run
This file contains hidden or 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: Linter | |
| # Run on every main merge and on PRs. | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| # Allow concurrent runs on main/release branches but isolates other branches | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} | |
| cancel-in-progress: ${{ ! (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Check for Go-related changes" | |
| id: check_nibiru_go | |
| uses: dorny/paths-filter@v3 | |
| with: | |
| filters: | | |
| nibiru-go: | |
| - "app/**/*.go" | |
| - "cmd/**/*.go" | |
| - "eth/**/*.go" | |
| - "gosdk/**/*.go" | |
| - "x/**/*.go" | |
| - "**/*.proto" | |
| - "go.mod" | |
| - "go.sum" | |
| - "contrib/docker-compose/*" | |
| - uses: actions/setup-go@v5 | |
| if: steps.check_nibiru_go.outputs.nibiru-go == 'true' | |
| with: | |
| go-version: 1.24 | |
| # cache: "The action has a built-in functionality for caching and | |
| # restoring go modules and build outputs. It uses [actions/cache@v4]." | |
| # - Handles go module cache (go env GOMODCACHE). | |
| # - Handles go build cache (go env GOCACHE). | |
| cache: true # Note that golangci-lint action already caches for us (https://github.com/golangci/golangci-lint-action#performance) | |
| - name: golangci-lint | |
| if: steps.check_nibiru_go.outputs.nibiru-go == 'true' | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | |
| version: v2.6.1 | |
| # Optional: working directory, useful for monorepos | |
| # working-directory: somedir | |
| # Optional: golangci-lint command line arguments. | |
| args: --fix=false | |
| # Optional: show only new issues if it's a pull request. The default value is `false`. | |
| # only-new-issues: true | |
| # Optional: if set to true then the all caching functionality will be | |
| # completely disabled. Takes precedence over all other caching options. | |
| skip-cache: false | |
| # Optional: if set to true then the action won't cache or restore ~/go/pkg. | |
| # skip-pkg-cache: true | |
| # Optional: if set to true then the action won't cache or restore ~/.cache/go-build. | |
| # skip-build-cache: true |