Skip to content

Bump github.com/aws/aws-sdk-go from 1.44.332 to 1.45.1 #26

Bump github.com/aws/aws-sdk-go from 1.44.332 to 1.45.1

Bump github.com/aws/aws-sdk-go from 1.44.332 to 1.45.1 #26

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: go build -v -tags lambda.norpc ./...
- name: Test
run: go test -tags lambda.norpc -covermode="count" -coverprofile="/tmp/coverage.out"
- name: Coverage Report
run: go tool cover -func="/tmp/coverage.out"