Skip to content

risingwave: seed _sink_info_ with WHERE NOT EXISTS; keep ON CONFLICT … #23

risingwave: seed _sink_info_ with WHERE NOT EXISTS; keep ON CONFLICT …

risingwave: seed _sink_info_ with WHERE NOT EXISTS; keep ON CONFLICT … #23

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "develop", "main" ]
pull_request:
branches: [ "develop", "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -v ./...