Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel committed Dec 14, 2023
1 parent 2f542cc commit a5830d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/run_bazel_test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ inputs:

runs:
using: composite
env:
BAZEL_SH: ${{ startswith(inputs.os, 'windows-') && 'C:\msys64\usr\bin\bash.exe' || '' }}
RBT_WORKING_DIR: ${{ inputs.working-directory }}
steps:
- shell: bash
env:
BAZEL_SH: ${{ startswith(inputs.os, 'windows-') && 'C:\msys64\usr\bin\bash.exe' || '' }}
RBT_WORKING_DIR: ${{ inputs.working-directory }}
run: |
[[ "${RBT_WORKING_DIR:-}" != "" ]] && cd "${RBT_WORKING_DIR}"
bazel test "//..."
Expand Down

0 comments on commit a5830d4

Please sign in to comment.