Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 6263c23

Browse files
committed
bash
1 parent e09982d commit 6263c23

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/actions/action-test/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ runs:
1616
using: composite
1717
steps:
1818
- name: Display Testing Details
19+
shell: bash
1920
run: |
2021
echo "Running SDK Test using"
2122
echo "Test Data: sdk-test-data@${TEST_DATA_BRANCH_NAME}"
@@ -32,12 +33,14 @@ runs:
3233
with:
3334
python-version: '3.9.x'
3435
- name: "Install dependencies"
36+
shell: bash
3537
run: |
3638
python -VV
3739
python -m pip install --upgrade pip setuptools wheel
3840
python -m pip install -r requirements.txt
3941
python -m pip install -r requirements-test.txt
4042
- name: "Run tests"
43+
shell: bash
4144
run: make test branchName=$BRANCH
42-
env:
43-
BRANCH: ${{ inputs.test_data_branch }}
45+
env:
46+
BRANCH: ${{ inputs.test_data_branch }}

0 commit comments

Comments
 (0)