From 5af5c0fb032a69f0adab9790bb4ff8bf47c7655a Mon Sep 17 00:00:00 2001 From: Andre Vehreschild Date: Thu, 21 Apr 2022 08:34:01 +0200 Subject: [PATCH] Use ':all' instead of '...' as bazel tgt. The three dots did not work, but ':all' does. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c27e79..4cd43fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,11 +52,11 @@ jobs: shell: bash run: | cd "${{ github.workspace }}" - bazel build ... + bazel build :all - name: Test shell: bash run: | cd "${{ github.workspace }}" - bazel test ... + bazel test :all