Skip to content

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0 #5

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.6.0 #5

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: go fmt
run: test -z $(gofmt -l .)
- name: go vet
run: go vet ./...
- name: golint
run: go install golang.org/x/lint/golint@latest && golint -set_exit_status ./...
- name: test
run: go test -timeout 30s -race ./...