From d337a34e14b4ea98b03d8e091bebacdd1cee5f09 Mon Sep 17 00:00:00 2001 From: Travis Bischel Date: Mon, 20 Jan 2025 21:42:17 -0700 Subject: [PATCH] .github: add kfake testing --- .github/workflows/lint-and-test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index e111928f..a3cc9c3b 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -29,6 +29,15 @@ jobs: version: latest args: --timeout=5m + test-kfake: + if: github.repository == 'twmb/franz-go' + runs-on: ubuntu-latest + name: "test kfake" + container: golang:latest + steps: + - uses: actions/checkout@v4 + - run: cd pkg/kfake && go test . + integration-test-kafka: if: github.repository == 'twmb/franz-go' runs-on: ubuntu-latest