Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2 from 1.41.4 to 1.41.12 #54

chore(deps): bump github.com/aws/aws-sdk-go-v2 from 1.41.4 to 1.41.12

chore(deps): bump github.com/aws/aws-sdk-go-v2 from 1.41.4 to 1.41.12 #54

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: go.mod
cache: true
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Format check
run: test -z "$(gofmt -l .)"
- name: Test
run: go test -race -coverprofile=coverage.txt ./...
- name: Integration Tests
run: go test -race -tags integration -coverprofile=coverage-integration.txt ./...
- name: Upload coverage
uses: codecov/codecov-action@4481f553995cc5011b158ce191746ac1a1d0f815 # v5.5.3
with:
files: coverage.txt,coverage-integration.txt
continue-on-error: true