feat!: adapt iavlx to store interfaces #85200
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| golangci: | |
| name: golangci-lint | |
| runs-on: depot-ubuntu-22.04-4 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| check-latest: true | |
| - uses: technote-space/[email protected] | |
| id: git_diff | |
| with: | |
| PATTERNS: | | |
| **/*.mk | |
| Makefile | |
| **/Makefile | |
| .golangci.yml | |
| - name: run linting (long) | |
| if: env.GIT_DIFF | |
| id: lint_long | |
| run: | | |
| make lint | |
| - uses: technote-space/[email protected] | |
| if: steps.lint_long.outcome == 'skipped' | |
| with: | |
| PATTERNS: | | |
| **/*.go | |
| *.go | |
| - name: run linting (short) | |
| if: steps.lint_long.outcome == 'skipped' && env.GIT_DIFF | |
| run: | | |
| make lint | |
| env: | |
| GIT_DIFF: ${{ env.GIT_DIFF }} | |
| LINT_DIFF: 1 |