Bump github.com/aws/aws-sdk-go from 1.37.10 to 1.55.7 #210
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: tests | |
env: | |
GO111MODULE: on | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: | |
# support the two most recent major go versions | |
- 1.x | |
- 1.15.x | |
platform: [ubuntu-latest, windows-latest] | |
include: | |
# minimum go version that works. This is not necessarily supported in | |
# any way, and will be bumped up without notice as needed. But it at | |
# least lets us know what go version should work. | |
- go-version: 1.11 | |
platform: ubuntu-latest | |
# only update test coverage stats with most recent go version on linux | |
- go-version: 1.x | |
platform: ubuntu-latest | |
update-coverage: true | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- run: go version | |
- name: Cache go modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: Run go test | |
run: go test -v -race -coverprofile coverage.txt -covermode atomic ./... | |
- name: Upload coverage to Codecov | |
if: ${{ matrix.update-coverage }} | |
uses: codecov/codecov-action@v1 | |
timeout-minutes: 2 |