Skip to content

Commit 9a91ab6

Browse files
committed
fix: use . instead of source for windows compatibility
1 parent e7948f8 commit 9a91ab6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ jobs:
4343
python -m venv .venv
4444
- name: Install Python toolchains
4545
run: |
46-
source .venv/bin/activate
46+
. .venv/bin/activate
4747
pip install maturin mypy pytest pytest-asyncio
4848
- name: Python build
4949
run: |
50-
source .venv/bin/activate
50+
. .venv/bin/activate
5151
maturin develop -E all
5252
- name: Python type check (mypy)
5353
run: |
54-
source .venv/bin/activate
54+
. .venv/bin/activate
5555
mypy python
5656
- name: Python tests
5757
run: |
58-
source .venv/bin/activate
58+
. .venv/bin/activate
5959
pytest python/cocoindex/tests

0 commit comments

Comments
 (0)