fix(app): reconciliation saveUnbalancedBlockHeight store-key mismatch (MOCA-670) #710
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: golangci lint | |
| # Lint runs golangci-lint over the entire Moca repository This workflow is | |
| # run on every pull request and push to main The `golangci` will pass without | |
| # running if no *.{go, mod, sum} files have been changed. | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| # Optional: allow read access to pull request. Use with `only-new-issues` option. | |
| pull-requests: read | |
| jobs: | |
| golangci: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25.10" | |
| check-latest: true | |
| - name: Get Diff | |
| uses: technote-space/get-diff-action@v6.1.2 | |
| with: | |
| PATTERNS: | | |
| **/*.go | |
| go.mod | |
| go.sum | |
| - name: run golangci-lint | |
| if: env.GIT_DIFF | |
| uses: golangci/golangci-lint-action@v9.2.1 | |
| with: | |
| version: v2.12.2 | |
| args: --timeout 10m | |
| only-new-issues: true |