Skip to content

Commit b8dde70

Browse files
committed
fix: Add virtual environment creation to CI workflow
- Added step to the CI workflow to create a virtual environment before installing dependencies, resolving the "No virtual environment found" error.
1 parent 1b40125 commit b8dde70

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
python-version: '3.x'
2020
- name: Install uv
2121
run: pip install uv
22+
- name: Create virtual environment
23+
run: uv venv
2224
- name: Install dependencies
2325
run: uv pip install .
2426
- name: Run tests

0 commit comments

Comments
 (0)