Skip to content

Commit 47d2230

Browse files
committed
fix: always source .venv/bin/activate before each step
1 parent aa56f3c commit 47d2230

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,13 @@ jobs:
4545
pip install maturin pytest mypy
4646
- name: Build
4747
run: |
48+
source .venv/bin/activate
4849
maturin develop
4950
- name: Type check
5051
run: |
52+
source .venv/bin/activate
5153
mypy python
5254
- name: Test
5355
run: |
56+
source .venv/bin/activate
5457
pytest python/cocoindex/tests

0 commit comments

Comments
 (0)