chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.11 to 1.27.24 #186
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" | |
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@v4 | |
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@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
files: ./coverage.out | |
- name: Build | |
run: make build |