Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.

deps: bump the aws-sdk group with 5 updates #34

deps: bump the aws-sdk group with 5 updates

deps: bump the aws-sdk group with 5 updates #34

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Check go mod tidy
run: |
go mod tidy
git diff --exit-code go.mod go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
test:
name: Test
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Test
run: go test -race -coverprofile=coverage.out ./...
- name: Upload coverage
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v7
with:
name: coverage
path: coverage.out
retention-days: 7