Skip to content

Bump github.com/aws/aws-sdk-go from 1.54.12 to 1.55.5 #424

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

Bump github.com/aws/aws-sdk-go from 1.54.12 to 1.55.5 #424

Workflow file for this run

name: unit-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
name: unit-test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: |
make docker-build
- name: Test
run: |
make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}