Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.26 to 1.27.30 #35

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.26 to 1.27.30

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.26 to 1.27.30 #35

Workflow file for this run

name: validate
on:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: validate
run: |
# Check that go mod tidy produces a zero diff; clean up any changes afterwards.
go mod tidy && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go vet ./... produces a zero diff; clean up any changes afterwards.
go vet ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fmt ./... produces a zero diff; clean up any changes afterwards.
go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)