Skip to content

fix: propagate PostgreSQL batch scan errors #85

fix: propagate PostgreSQL batch scan errors

fix: propagate PostgreSQL batch scan errors #85

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Format check
run: test -z "$(gofmt -l .)"
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...