Skip to content

build(deps): bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 in /e2e #68

build(deps): bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 in /e2e

build(deps): bump github.com/jackc/pgx/v5 from 5.3.1 to 5.5.4 in /e2e #68

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- main
- 'v*'
env:
MODULES: "./docker/... ./e2e/... ./mailbox/... ./tx/..."
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.work
cache-dependency-path: '*/go.sum'
check-latest: true
- name: Test
run: make test
golangci:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.work
cache-dependency-path: '*/go.sum'
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: latest
args: '--config=.golangci.yaml -v $MODULES'