Skip to content

Commit 92c2414

Browse files
committed
[CI] fix bash shell in install action
1 parent 628e474 commit 92c2414

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/install-python-and-package

1 file changed

+2
-2
lines changed

.github/actions/install-python-and-package/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ runs:
1313
with:
1414
python-version: ${{ inputs.python-version }}
1515
- name: Python info
16-
shell: bash -l {0}
16+
shell: bash {0}
1717
run: |
1818
which python3
1919
python3 --version
2020
- name: Upgrade pip and install dependencies
21-
shell: bash -l {0}
21+
shell: bash {0}
2222
run: |
2323
python3 -m pip install --upgrade pip setuptools
2424
python3 -m pip install .[dev,publishing]

0 commit comments

Comments
 (0)