Skip to content

build(deps): bump github.com/jackc/pgx/v5 from 5.7.6 to 5.8.0 (#2404) #90

build(deps): bump github.com/jackc/pgx/v5 from 5.7.6 to 5.8.0 (#2404)

build(deps): bump github.com/jackc/pgx/v5 from 5.7.6 to 5.8.0 (#2404) #90

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
pull_request:
paths-ignore:
- "LICENSE*"
- "DOCKERFILE*"
- "**.gitignore"
- "**.md"
- "**.txt"
- ".github/ISSUE_TEMPLATE/**"
- ".github/dependabot.yml"
- "docs/**"
permissions: # set contents: read at top-level, per OpenSSF ScoreCard rule TokenPermissionsID
contents: read
jobs:
prepare:
uses: ./.github/workflows/prepare.yml
build:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version: "1.25.7"
- name: Build
run: make build/compile
- name: Registry unit tests
run: make test-cover
- name: Catalog unit tests
run: make -C catalog test-cover