Skip to content

Bump github.com/aws/aws-sdk-go from 1.48.13 to 1.49.0 #1321

Bump github.com/aws/aws-sdk-go from 1.48.13 to 1.49.0

Bump github.com/aws/aws-sdk-go from 1.48.13 to 1.49.0 #1321

Workflow file for this run

name: Unit
on: [push, pull_request]
env:
GITHUB_ACTIONS: true
jobs:
test:
name: "Tests (${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
go: ['1.x']
fail-fast: false
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 1 }
- uses: actions/setup-go@v3
with: { go-version: "${{ matrix.go }}" }
- run: go version
- run: make test-unit race=true
if: matrix.os != 'ubuntu-latest'
- run: make test-unit race=true coverage=true
if: matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@v3
with:
file: tmp/unit.cov
flags: unit
if: matrix.os == 'ubuntu-latest'
bench:
name: Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 1 }
- uses: actions/setup-go@v3
with: { go-version: '1.x' }
- run: go version
- run: make test-bench