Skip to content

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.7.2 #414

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.7.2

Bump github.com/jackc/pgx/v5 from 5.5.5 to 5.7.2 #414

Workflow file for this run

---
name: Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types:
- created
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
- uses: golangci/golangci-lint-action@v3
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
go-version: [ '1.20', '1.21' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Task
uses: arduino/setup-task@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install docker compose
uses: docker/setup-compose-action@v1
- run: task test
tets-summary:
name: Test
needs: test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- run: echo "All good!"