We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1cc3cba + 9eb66e2 commit e3f6759Copy full SHA for e3f6759
1 file changed
.github/workflows/pip-install.yml
@@ -37,13 +37,13 @@ jobs:
37
run: |
38
python -m venv venv-sdist
39
venv-sdist/bin/python -m pip install dist/vplanet*.tar.gz
40
- venv-sdist/bin/python -c "import vplanet; print(vplanet.__version__)"
+ cd /tmp && "$GITHUB_WORKSPACE/venv-sdist/bin/python" -c "import vplanet; print(vplanet.__version__)"
41
42
- name: Test the wheel
43
44
python -m venv venv-wheel
45
venv-wheel/bin/python -m pip install dist/vplanet*.whl
46
- venv-wheel/bin/python -c "import vplanet; print(vplanet.__version__)"
+ cd /tmp && "$GITHUB_WORKSPACE/venv-wheel/bin/python" -c "import vplanet; print(vplanet.__version__)"
47
48
- uses: actions/upload-artifact@v4
49
with:
0 commit comments