Skip to content

Bump github.com/aws/aws-sdk-go from 1.49.15 to 1.51.6 #69

Bump github.com/aws/aws-sdk-go from 1.49.15 to 1.51.6

Bump github.com/aws/aws-sdk-go from 1.49.15 to 1.51.6 #69

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Code Formatting
run: make fmtcheck
- name: Linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
build:
name: test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: make test
- name: Integration Test
run: make integration-test
- name: EndToEnd test
run: make end2end-test