Skip to content

build(deps): bump github.com/jackc/pgx/v4 from 4.18.1 to 4.18.3 #196

build(deps): bump github.com/jackc/pgx/v4 from 4.18.1 to 4.18.3

build(deps): bump github.com/jackc/pgx/v4 from 4.18.1 to 4.18.3 #196

Workflow file for this run

name: Go Build & Test
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Build & Test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.20"
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# don't execute tests in parallel - will collide with reusable testcontainers
- name: Build & Test
run: |
go build -v
go test ./... -p 1
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
args: release --snapshot --skip-publish --clean