Skip to content

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.7.2 #419

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.7.2

chore(deps): bump github.com/jackc/pgx/v5 from 5.6.0 to 5.7.2 #419

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version-file: go.mod
- name: Unit test
run: make test
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.out
force-coverage-parser: go
- name: Download moduls
run: make mod
- name: Build
run: make build
linting:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2