Skip to content

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.51.32 #191

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.51.32

Bump github.com/aws/aws-sdk-go from 1.46.6 to 1.51.32 #191

Workflow file for this run

name: LinuxUnitTest
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit_test:
name: Unit test (linux)
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1"
check-latest: true
- name: Run tests with coverage report output
run: go test -cover -coverpkg=./... -coverprofile=coverage.out ./...
- uses: k1LoW/octocov-action@v0