Skip to content

fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5 #463

fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5

fix(deps): update module github.com/aws/aws-sdk-go to v1.55.5 #463

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Run actions/checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run actions/setup-go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version-file: "go.mod"
cache: true
- name: Download go modules
run: go mod download
- name: Compile go packages
run: go build -o example_echo cmd/main.go
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Run actions/checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run reviewdog/action-golangci-lint
uses: reviewdog/action-golangci-lint@dd3fda91790ca90e75049e5c767509dc0ec7d99b # v2
with:
github_token: ${{ github.token }}
go_version_file: "go.mod"
golangci_lint_flags: "--config=config/.golangci.yml"
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Run actions/checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run actions/setup-go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version-file: "go.mod"
cache: true
- name: Run tests
run: go test ./...