From 2f883742781aedce2d51d573d5db85270b1096ba Mon Sep 17 00:00:00 2001 From: Steffen Smolka Date: Sat, 14 Oct 2023 10:53:41 -0700 Subject: [PATCH] Run test during CI --- .github/workflows/ci-build-proto.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build-proto.yml b/.github/workflows/ci-build-proto.yml index 519be7dd..4b1b69d6 100644 --- a/.github/workflows/ci-build-proto.yml +++ b/.github/workflows/ci-build-proto.yml @@ -40,7 +40,7 @@ jobs: sudo mv $BAZEL /usr/local/bin/bazel - name: Build proto/ - run: cd proto && bazel build //... + run: cd proto && bazel build //... && bazel test //... - name: Build bazel/example/ - run: cd bazel/example/ && bazel build //... + run: cd bazel/example/ && bazel build //... && bazel test //...