Skip to content

Commit c61f9d7

Browse files
committed
.
1 parent 6bb8921 commit c61f9d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test-sdist/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ runs:
1414
run: |
1515
python -m venv .test-sdist
1616
VENV_BIN=".test-sdist/bin"; [ -d ".test-sdist/Scripts" ] && VENV_BIN=".test-sdist/Scripts"
17-
"$VENV_BIN/pip" install dist/*.tar.gz
17+
for sdist in dist/*.tar.gz; do "$VENV_BIN/pip" install "$sdist"; done
1818
"$VENV_BIN/python" -c "import ${{ inputs.module }}"

test-wheel/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ runs:
1414
run: |
1515
python -m venv .test-wheel
1616
VENV_BIN=".test-wheel/bin"; [ -d ".test-wheel/Scripts" ] && VENV_BIN=".test-wheel/Scripts"
17-
"$VENV_BIN/pip" install dist/*.whl
17+
for whl in dist/*.whl; do "$VENV_BIN/pip" install "$whl"; done
1818
"$VENV_BIN/python" -c "import ${{ inputs.module }}"

0 commit comments

Comments
 (0)