Skip to content

Bump github.com/aws/aws-lambda-go from 1.49.0 to 1.50.0 in the gomod-all group #18

Bump github.com/aws/aws-lambda-go from 1.49.0 to 1.50.0 in the gomod-all group

Bump github.com/aws/aws-lambda-go from 1.49.0 to 1.50.0 in the gomod-all group #18

Workflow file for this run

name: CI
on:
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened.
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
# So we add default event types and ready_for_review type here.
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
permissions:
contents: read
pull-requests: read
jobs:
test:
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Run test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version-file: go.mod
- run: make test
lint:
timeout-minutes: 10
if: github.event.pull_request.draft == false
name: Run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
only-new-issues: true