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 430e0b7 commit 29ca9a9Copy full SHA for 29ca9a9
.github/workflows/reusable-cpp-linter.yml
@@ -102,7 +102,12 @@ jobs:
102
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
103
with:
104
python-version: 3.13
105
- activate-environment: true
+ # create and activate a Python virtual environment
106
+ - if: ${{ inputs.setup-python }}
107
+ name: Create and activate Python virtual environment
108
+ run: |
109
+ uv venv --python 3.13 venv
110
+ source venv/bin/activate
111
# install the given packages in the Python virtual environment
112
- if: ${{ inputs.setup-python }}
113
name: Validate package list and install given packages
0 commit comments