Skip to content

fix(deps): update module github.com/jackc/pgx/v5 to v5.9.1 #246

fix(deps): update module github.com/jackc/pgx/v5 to v5.9.1

fix(deps): update module github.com/jackc/pgx/v5 to v5.9.1 #246

Workflow file for this run

name: Golang-ci
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint-and-test:
name: lint & test
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Platform info
run: go version
- name: Run go mod tidy
run: go mod tidy -diff
- name: Install & build
run: make
- name: Run lint
run: make lint
- name: Run tests
run: make test