We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6dbd9 commit 08da074Copy full SHA for 08da074
1 file changed
.github/workflows/regression-tests.yml
@@ -46,10 +46,10 @@ jobs:
46
# Use grep to find the line beginning with "python"
47
- name: Get Python version from file
48
run: |
49
- PYTHON_VERSION=$(grep "^python\K.*" .tool-versions)
+ PYTHON_VERSION=$(grep "^python" .tool-versions | sed 's/python //g')
50
echo "PYTHON_VERSION=$PYTHON_VERSION" >> $GITHUB_ENV
51
52
- - name: setup venv
+ - name: setup python venv
53
uses: actions/checkout@v5
54
- uses: actions/setup-python@v6
55
with:
0 commit comments