Skip to content

Update module github.com/aws/aws-sdk-go to v1.55.5 #638

Update module github.com/aws/aws-sdk-go to v1.55.5

Update module github.com/aws/aws-sdk-go to v1.55.5 #638

Workflow file for this run

name: test
on:
pull_request_target:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.17]
name: Test with Go version ${{ matrix.go }}
steps:
- uses: actions/[email protected]
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/[email protected]
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: lint
run: go vet ./...
- name: test
run: make test
- name: build
run: make build