We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb8921 commit c61f9d7Copy full SHA for c61f9d7
2 files changed
test-sdist/action.yml
@@ -14,5 +14,5 @@ runs:
14
run: |
15
python -m venv .test-sdist
16
VENV_BIN=".test-sdist/bin"; [ -d ".test-sdist/Scripts" ] && VENV_BIN=".test-sdist/Scripts"
17
- "$VENV_BIN/pip" install dist/*.tar.gz
+ for sdist in dist/*.tar.gz; do "$VENV_BIN/pip" install "$sdist"; done
18
"$VENV_BIN/python" -c "import ${{ inputs.module }}"
test-wheel/action.yml
python -m venv .test-wheel
VENV_BIN=".test-wheel/bin"; [ -d ".test-wheel/Scripts" ] && VENV_BIN=".test-wheel/Scripts"
- "$VENV_BIN/pip" install dist/*.whl
+ for whl in dist/*.whl; do "$VENV_BIN/pip" install "$whl"; done
0 commit comments