Skip to content

dependabot(deps): bump github.com/aws/aws-sdk-go from 1.51.16 to 1.52.2 #553

dependabot(deps): bump github.com/aws/aws-sdk-go from 1.51.16 to 1.52.2

dependabot(deps): bump github.com/aws/aws-sdk-go from 1.51.16 to 1.52.2 #553

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
name: CI tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '${{ env.golang-version }}'
- name: Run code format check
run: make format
- name: Run unit tests
run: make test
- name: Run e2e tests
run: make test-e2e