Skip to content

Bump github.com/aws/aws-sdk-go from 1.45.24 to 1.47.0 #1147

Bump github.com/aws/aws-sdk-go from 1.45.24 to 1.47.0

Bump github.com/aws/aws-sdk-go from 1.45.24 to 1.47.0 #1147

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.20'
- run: go version
- run: go install github.com/mattn/goveralls@latest
- run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_RELEASE}
env:
GOLANGCI_RELEASE: v1.51.1
- run: make build.docker
- run: make test
- run: make lint
- run: goveralls -coverprofile=profile.cov -service=github
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}