BQ: fix create/replace logic for resync #6060
Workflow file for this run
This file contains 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/**] | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: [ubicloud-standard-4-ubuntu-2204-arm] | |
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: ubicloud/setup-go@35680fe0723d4a9309d4b1ac1c67e0d46eac5f24 # v5 | |
with: | |
go-version: '1.23.0' | |
cache: false | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6 | |
with: | |
version: v1.61 | |
working-directory: ./flow | |
args: --timeout=10m |