Skip to content

Bump github.com/aws/aws-sdk-go from 1.54.12 to 1.54.13 #657

Bump github.com/aws/aws-sdk-go from 1.54.12 to 1.54.13

Bump github.com/aws/aws-sdk-go from 1.54.12 to 1.54.13 #657

Workflow file for this run

name: Go linters
on:
- push
- pull_request
jobs:
golint:
runs-on: ubuntu-20.04
strategy:
matrix:
go-version:
- "1.20"
- "1.21"
name: Linters for Go ${{ matrix.go-version}}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build project
run: go build
- name: Style linters
run: make style