Skip to content

Commit

Permalink
Use single quotes for package specifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel committed Dec 14, 2023
1 parent 4246e6a commit 5b6693c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/run_bazel_test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ runs:
RBT_WORKING_DIR: ${{ inputs.working-directory }}
run: |
[[ "${RBT_WORKING_DIR:-}" != "" ]] && cd "${RBT_WORKING_DIR}"
bazel test "//..."
bazel test '//...'
- shell: bash
if: ${{ ! startswith(inputs.os, 'windows-') }}
env:
RBT_WORKING_DIR: ${{ inputs.working-directory }}
run: |
[[ "${RBT_WORKING_DIR:-}" != "" ]] && cd "${RBT_WORKING_DIR}"
bazel test "//..."
bazel test '//...'

0 comments on commit 5b6693c

Please sign in to comment.