Bump github.com/aws/aws-sdk-go from 1.54.11 to 1.54.15 #876
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 and test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
strategy: | |
matrix: | |
go: [ '1.17', '1.16', '1.15' ] | |
name: Go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Run staticcheck (only latest go version) | |
if: matrix.go == '1.17' | |
run: ./staticcheck.sh | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Start docker-compose services | |
run: docker-compose -f test/docker-compose-it.yaml up -d | |
- name: Build and test migrator | |
env: | |
AZURE_STORAGE_ACCESS_KEY: ${{ secrets.AZURE_STORAGE_ACCESS_KEY }} | |
AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT }} | |
run: ./coverage.sh | |
- name: Run HTTP integration tests | |
run: ./test/http-integration-tests.sh | |
- uses: codecov/codecov-action@v4.5.0 |