Skip to content

pull-listener-pkg

pull-listener-pkg #832

name: pull-listener-pkg
on: [pull_request, workflow_dispatch]
jobs:
lint-build-test-listener-pkg:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./listener
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.6'
cache: false
- name: Lint
uses: golangci/golangci-lint-action@051d91933864810ecd5e2ea2cfd98f6a5bca5347 # v6.3.2
with:
version: v1.63.4
args: --verbose
working-directory: ./listener
- name: Build
run: go build -v ./...
- name: Test
run: make test