Skip to content

⬆️ Bump github.com/aws/aws-sdk-go-v2/config #2222

⬆️ Bump github.com/aws/aws-sdk-go-v2/config

⬆️ Bump github.com/aws/aws-sdk-go-v2/config #2222

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '^1.20'
- name: Test
run: go test -race -timeout 20m -coverprofile=coverage.txt -covermode=atomic ./...
- name: Coverage
uses: codecov/codecov-action@v3
with:
file: coverage.txt
release:
needs: [ test ]
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
if: ${{ github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '^1.20'
- run: make install-release-tool new-patch-release