Bump github.com/aws/aws-sdk-go from 1.42.39 to 1.54.17 #1466
Workflow file for this run
This file contains 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: 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' |