File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -390,15 +390,13 @@ jobs:
390390 args : --release --locked --out dist --compatibility pypi
391391 - name : " Test wheel"
392392 if : matrix.target == 'x86_64-unknown-linux-musl'
393- uses : addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185 # v3
394- with :
395- image : alpine:latest
396- options : -v ${{ github.workspace }}:/io -w /io
397- run : |
398- apk add python3
399- python -m venv .venv
400- .venv/bin/pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
401- .venv/bin/${{ env.MODULE_NAME }} --help
393+ run : |
394+ docker run --rm -v ${{ github.workspace }}:/io -w /io --env MODULE_NAME --env PACKAGE_NAME alpine:latest sh -c "
395+ apk add python3;
396+ python -m venv .venv;
397+ .venv/bin/pip3 install ${PACKAGE_NAME} --no-index --find-links dist/ --force-reinstall;
398+ .venv/bin/${MODULE_NAME} --help;
399+ "
402400 - name : " Upload wheels"
403401 uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
404402 with :
You can’t perform that action at this time.
0 commit comments