Skip to content

Bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 #13

Bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4

Bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 #13

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
containers:
- 1.19.7-bullseye
- 1.20.2-bullseye
runs-on: ubuntu-latest
container: golang:${{ matrix.containers }}
env:
PGPASSWORD: pgpwd
PGHOST: postgres
PGUSER: postgres
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit Tests
run: go test -v -race -timeout=60s ./...
services:
postgres:
image: postgres:14.2
env:
POSTGRES_PASSWORD: pgpwd