mod: bump aws Go sdk to v1.47.11 to support EKS pod identities #958
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
name: build-pr | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@main | |
- name: setup go environment | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.17.6' | |
- name: run tests | |
run: make test | |
- name: upload coverage report | |
uses: actions/upload-artifact@main | |
with: | |
name: chartmuseum-storage-coverage-report-${{ github.sha }} | |
path: coverage.html | |
if: always() |