Skip to content

Bump github.com/aws/aws-lambda-go from 1.46.0 to 1.47.0 in the all-go-modules group #60

Bump github.com/aws/aws-lambda-go from 1.46.0 to 1.47.0 in the all-go-modules group

Bump github.com/aws/aws-lambda-go from 1.46.0 to 1.47.0 in the all-go-modules group #60

Workflow file for this run

name: Go build and test
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover ./...