Skip to content

build(deps): bump github.com/aws/aws-sdk-go from 1.49.24 to 1.51.17 #135

build(deps): bump github.com/aws/aws-sdk-go from 1.49.24 to 1.51.17

build(deps): bump github.com/aws/aws-sdk-go from 1.49.24 to 1.51.17 #135

Workflow file for this run

name: Test and coverage
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
if: success() || failure()
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
files: ./coverage.out
move_coverage_to_trash: true