Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/ecr from 1.32.1 to 1.33.0 in the aws group #143

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/ecr from 1.32.1 to 1.33.0 in the aws group

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/ecr from 1.32.1 to 1.33.0 in the aws group #143

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Linter
uses: golangci/golangci-lint-action@v6
with:
version: latest
unit:
name: Run unit tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}