Skip to content

Enhance Kafka consumer close and Http server handlers to allow runnin… #2

Enhance Kafka consumer close and Http server handlers to allow runnin…

Enhance Kafka consumer close and Http server handlers to allow runnin… #2

Workflow file for this run

name: build-verify
on:
push:
branches: [ "main" ]
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 #v5.0.1
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...