Skip to content

Bump github.com/aws/aws-sdk-go from 1.54.2 to 1.54.6 #78

Bump github.com/aws/aws-sdk-go from 1.54.2 to 1.54.6

Bump github.com/aws/aws-sdk-go from 1.54.2 to 1.54.6 #78

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
permissions: read-all
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.txt
verbose: true