Skip to content

Commit 29ca9a9

Browse files
committed
🐛 Install pybind11 into cpp-linter venv
1 parent 430e0b7 commit 29ca9a9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/reusable-cpp-linter.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,12 @@ jobs:
102102
uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v6.1.0
103103
with:
104104
python-version: 3.13
105-
activate-environment: true
105+
# 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
106111
# install the given packages in the Python virtual environment
107112
- if: ${{ inputs.setup-python }}
108113
name: Validate package list and install given packages

0 commit comments

Comments
 (0)