Skip to content

Bump github.com/aws/aws-sdk-go-v2 from 1.30.0 to 1.31.0 #577

Bump github.com/aws/aws-sdk-go-v2 from 1.30.0 to 1.31.0

Bump github.com/aws/aws-sdk-go-v2 from 1.30.0 to 1.31.0 #577

Workflow file for this run

# Checks are executed on each push
name: Checks
on: ["push"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
args: --timeout 5m
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Execute tests
run: make test
shell: bash
- name: Export coverage
if: github.event == 'pull_request'
run: go tool cover -html=cover.out -o=coverage.html
- name: Upload artifacts
if: github.event == 'pull_request'
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.html