From cd0dc04f6479eb84c3852775a10870e5fa78e4a1 Mon Sep 17 00:00:00 2001 From: Soatok Date: Fri, 22 Aug 2025 02:25:50 -0400 Subject: [PATCH] explicitly test internal functions --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25baf1f..5934a3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,3 +29,9 @@ jobs: - name: Test Coordinator run: cd coordinator && go test -v -short && cd .. + + - name: Test Client Internal + run: cd client/internal && go test -v -short && cd ../.. + + - name: Test Coordinator Internal + run: cd coordinator/internal && go test -v -short && cd ..