Skip to content

Bump github.com/aws/aws-sdk-go from 1.47.1 to 1.49.4 #449

Bump github.com/aws/aws-sdk-go from 1.47.1 to 1.49.4

Bump github.com/aws/aws-sdk-go from 1.47.1 to 1.49.4 #449

Workflow file for this run

name: Building
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.21
id: go
- name: Set up gotestsum
uses: autero1/action-gotestsum@v1.0.0
with:
gotestsum_version: 1.7.0
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: gotestsum -- -race ./...