consideRatio commented on code in PR #23694:
URL: https://github.com/apache/beam/pull/23694#discussion_r998408380
##########
.github/workflows/python_tests.yml:
##########
@@ -111,7 +111,7 @@ jobs:
- name: Install python
uses: actions/setup-python@v4
with:
- python-version: ${{ matrix.params.py_ver }}
+ python-version: '${{ matrix.params.py_ver }}'
Review Comment:
Ah, I was incorrect. I expected template rendering would make the `${{
matrix.params.py_ver }}` render to `3.10` without quotes, and that the
following YAML parsing would lead to a failure.
It seems that my guess on how github expression's like `${{ }}` were
replaced was incorrect, and a quote there wasn't needed. I knew that `echo '${{
steps.setup-python.outputs.python-version }}'` would translate to `echo
'3.10.7'` - without quotes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]