Use ':all' instead of '...' as bazel tgt.

The three dots did not work, but ':all' does.
This commit is contained in:
Andre Vehreschild 2022-04-21 08:34:01 +02:00
parent 71e76f1509
commit 5af5c0fb03

View File

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