Standardize Python version syntax in CI config

Ensure the Python version is specified as a string in the Ubuntu
workflow configuration to prevent potential parsing issues by the
setup-python GitHub Action. This update aligns with the recommended
practices for YAML file consistency and compatibility.
This commit is contained in:
Kumi 2024-02-09 13:07:33 +01:00
parent 41bf2603d8
commit 7aa4df9d2c
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -23,7 +23,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: "3.10"
- name: Prepare Python environment
run: |