Skip to content

build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.35 in /services/s3 #8841

build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.35 in /services/s3

build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.35 in /services/s3 #8841

Workflow file for this run

name: "Unit Test"
on: [ push,pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
unit_test:
name: Unit Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ "1.16", "1.17" ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout repository
uses: actions/checkout@v2
- name: Build
run: make build-all
- name: Test
run: make test-all