[WIP] introduce direct source to destination type conversion #8050
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/**, .github/workflows/golang-lint.yml] | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: generate or hydrate protos | |
| uses: ./.github/actions/genprotos | |
| - name: install lib-geos | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libgeos-dev | |
| - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5 | |
| with: | |
| go-version: '1.24.3' | |
| cache: false | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8 | |
| with: | |
| version: v2.1.6 | |
| working-directory: ./flow | |
| args: --timeout=10m |