diff --git a/.github/workflows/module.build.yml b/.github/workflows/module.build.yml index 1d4e2cfa..68c134ee 100644 --- a/.github/workflows/module.build.yml +++ b/.github/workflows/module.build.yml @@ -74,7 +74,4 @@ jobs: - name: "Build: Example" continue-on-error: ${{ inputs.labs }} shell: bash - run: | - bazel build \ - --config=ci \ - //... + run: bazel build --config=ci "//..." diff --git a/.github/workflows/module.test.yml b/.github/workflows/module.test.yml index a279bc3a..0f928603 100644 --- a/.github/workflows/module.test.yml +++ b/.github/workflows/module.test.yml @@ -124,7 +124,4 @@ jobs: continue-on-error: ${{ inputs.labs }} working-directory: ${{ matrix.directory }} shell: bash - run: | - bazel \ - ${{ matrix.action || 'build' }} \ - ${{ matrix.target || '//...' }} + run: bazel ${{ matrix.action || 'build' }} "${{ matrix.target || '//...' }}"