Skip to content

test: integration test kafka #3459

test: integration test kafka

test: integration test kafka #3459

Workflow file for this run

name: Unit Tests
on:
push:
pull_request:
jobs:
unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Install Dependencies
run: go mod download
- name: Run All Unit Tests
run: go test -v ./...