Skip to content

Commit ddc43bf

Browse files
committed
fix: create venv before installing dependencies in CI
1 parent 700b922 commit ddc43bf

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ jobs:
2525
- name: Set up Python ${{ matrix.python-version }}
2626
run: uv python install ${{ matrix.python-version }}
2727

28+
- name: Create virtual environment
29+
run: uv venv --python ${{ matrix.python-version }}
30+
2831
- name: Install dependencies
29-
run: uv pip install --system -e ".[dev]"
32+
run: uv pip install -e ".[dev]"
3033

3134
- name: Run type checking
3235
run: uv run poe type

0 commit comments

Comments
 (0)