Skip to content

Bump github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.30.1 to 1.32.3 #209

Bump github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.30.1 to 1.32.3

Bump github.com/aws/aws-sdk-go-v2/service/dynamodb from 1.30.1 to 1.32.3 #209

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
name: Build
runs-on: ubuntu-latest
steps:
- name: Setup DynamoDB Local
uses: rrainn/dynamodb-action@v2.0.0
with:
port: 8000
cors: '*'
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: go test
env:
AWS_ACCESS_KEY_ID: dummy
AWS_SECRET_ACCESS_KEY: dummy
DYNAMODB_LOCAL_ENDPOINT: http://localhost:8000
AWS_DEFAULT_REGION: ap-northeast-1
run: |
go test -race -timeout 30s ./...