Skip to content

Bump github.com/aws/aws-sdk-go from 1.42.39 to 1.52.6 #1366

Bump github.com/aws/aws-sdk-go from 1.42.39 to 1.52.6

Bump github.com/aws/aws-sdk-go from 1.42.39 to 1.52.6 #1366

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-20.04, windows-latest, macos-11]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Lint
run: make lint
- name: Cross build
if: ${{ runner.os == 'Linux' }}
run: make cross
- name: Test
run: make test
# some features, like openat2, require a newer kernel
fedora:
# nested virtualization is only available on macOS hosts
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: prepare vagrant
run: |
ln -sf .ci/Vagrantfile.fedora Vagrantfile
# Retry if it fails (download.fedoraproject.org returns 404 sometimes)
vagrant up || vagrant up
vagrant ssh-config >> ~/.ssh/config
- name: system info
run: ssh default 'sh -exc "uname -a && df -T"'
- name: tests
run: ssh default 'cd /vagrant && make test'