Tilt dev env & Tests: Go tests load .env no longer requiring variables injection
#11045
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 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@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 | |
| with: | |
| go-version: '1.26.1' | |
| cache: false | |
| - name: golangci-lint flow | |
| uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9 | |
| with: | |
| version: v2.11.4 | |
| working-directory: ./flow | |
| args: --timeout=10m | |
| - name: golangci-lint e2e_cleanup | |
| uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9 | |
| with: | |
| version: v2.11.4 | |
| working-directory: ./e2e_cleanup | |
| args: --timeout=10m |