chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.29.12 to 1.29.14 #314
Workflow file for this run
This file contains hidden or 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" | |
| on: | |
| # push: | |
| # branches: | |
| # - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| security-events: write | |
| actions: read | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| test: | |
| name: "Test and Build" | |
| runs-on: ubuntu-latest | |
| env: | |
| MAKE_DEBUG: "true" | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go 1.x | |
| id: go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: Go version | |
| run: | | |
| go version | |
| - name: Test | |
| run: make test | |
| - name: codecov coverage report | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
| files: ./coverage.out | |
| - name: Build | |
| run: make build |