Skip to content

build(deps): bump github.com/aws/aws-sdk-go from 1.44.323 to 1.44.328 #76

build(deps): bump github.com/aws/aws-sdk-go from 1.44.323 to 1.44.328

build(deps): bump github.com/aws/aws-sdk-go from 1.44.323 to 1.44.328 #76

Workflow file for this run

on:
push:
branches:
- "**"
name: Build
env:
GO_VERSION: 1.19
jobs:
build:
name: Run checks and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
- name: Vet
run: make vet
- name: Test
run: make test
- name: Build
run: make
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
- run: go fmt ./...
- name: Verify No Differences after format
run: test -z "$(git diff)"