Skip to content

add listener lambda #10

add listener lambda

add listener lambda #10

Workflow file for this run

name: build-and-test-feature-branch
on:
pull_request:
types:
- opened
- synchronize
- reopened
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Build and Test
run: |
make deps
make build-all
make test