We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a75d5 commit d7b54cfCopy full SHA for d7b54cf
.github/actions/python-environment/action.yml
@@ -57,6 +57,7 @@ runs:
57
"$PYTHON_BINARY" --version
58
PYTHON_PATH="$(which $PYTHON_BINARY)"
59
poetry env use "$PYTHON_PATH"
60
+ poetry run python --version
61
env:
62
PYTHON_BINARY: "python${{ inputs.python-version }}"
63
@@ -69,3 +70,8 @@ runs:
69
70
else
71
poetry install
72
fi
73
+
74
+ - name: Validate Poetry environment
75
+ working-directory: ${{ inputs.working-directory }}
76
+ shell: bash
77
+ run: poetry run python --version | grep ${{ inputs.python-version }}"
0 commit comments