Skip to content

Update actions/setup-go action to v5 #14

Update actions/setup-go action to v5

Update actions/setup-go action to v5 #14

Workflow file for this run

name: build-and-test
on:
pull_request:
types:
- opened
- synchronize
- reopened
permissions:
contents: read
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
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
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "unit-tests.xml"
if: always()
- name: Upload listener-lambda.zip
uses: actions/upload-artifact@v4
with:
name: listener-lambda.zip
path: build/listener/listener-lambda.zip