fix(mysql): classify event checksum error #12131
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: [flow/**, e2e_cleanup/**, .github/workflows/golang-lint.yml] | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: generate or hydrate protos | |
| uses: ./.github/actions/genprotos | |
| - name: install lib-geos | |
| run: | | |
| sudo apt-get install libgeos-dev | |
| - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6 | |
| with: | |
| go-version: '1.26.4' | |
| cache: false | |
| - name: golangci-lint flow | |
| uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9 | |
| with: | |
| version: v2.12.2 | |
| working-directory: ./flow | |
| args: --timeout=10m | |
| - name: golangci-lint e2e_cleanup | |
| uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9 | |
| with: | |
| version: v2.12.2 | |
| working-directory: ./e2e_cleanup | |
| args: --timeout=10m |