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 ..