feat: initial kmsvc-sdk Go client for kafkamgmt.v1 message-plane API

Client/auth/message-plane methods/long-poll/typed errors, all tested
against an in-process bufconn fake. Consumes [email protected] via
go get (GOPRIVATE), no submodule or local codegen.
This commit is contained in:
riotpiaole
2026-06-21 19:57:41 -07:00
commit 6ef58c108f
17 changed files with 1125 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: docker
container:
image: golang:1.25
env:
GOPRIVATE: forgejo.riotpiao.homelab.com
steps:
- uses: actions/checkout@v4
- name: go build
run: go build ./...
- name: go vet
run: go vet ./...
- name: go test
run: go test ./... -race