Skip to content

Bump github.com/aws/aws-sdk-go from 1.49.14 to 1.51.14 in /v2 #915

Bump github.com/aws/aws-sdk-go from 1.49.14 to 1.51.14 in /v2

Bump github.com/aws/aws-sdk-go from 1.49.14 to 1.51.14 in /v2 #915

Workflow file for this run

name: GoV2
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: secret
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build
run: cd v2 && go build -v ./...
- name: Test
run: cd v2 && go test -v ./...
env:
PGX_TEST_DATABASE: postgres://postgres:secret@localhost:5432?sslmode=disable