Skip to content

Bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.6 #202

Bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.6

Bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.6 #202

Workflow file for this run

name: "Codecov"
# Run workflow each time code is pushed to your repository and on a schedule.
# The scheduled workflow runs every at 00:00 on Sunday UTC time.
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Run go test for coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}