Skip to content

created v3, remove usage of aws-sdk-go v1 #2

created v3, remove usage of aws-sdk-go v1

created v3, remove usage of aws-sdk-go v1 #2

Workflow file for this run

name: GoV3
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@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: cd v3 && go build -v ./...
- name: Test
run: cd v3 && go test -v ./...
env:
PGHOST: localhost
PGUSER: postgres
PGPASSWORD: secret
PGSSLMODE: disable