Skip to content

Commit ada8c94

Browse files
committed
update the paths for uv venv
1 parent a1bb0f7 commit ada8c94

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/did_sim.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ jobs:
6161

6262
- name: Install Monte-Cover
6363
run: |
64-
uv venv --project monte-cover/pyproject.toml
65-
uv sync --project monte-cover/pyproject.toml
64+
cd monte-cover
65+
uv venv
66+
uv sync
6667
6768
- name: Install DoubleML from correct branch
6869
run: |
70+
source monte-cover/.venv/bin/activate
6971
uv pip uninstall --project monte-cover/pyproject.toml doubleml
7072
uv pip install --project monte-cover/pyproject.toml "doubleml @ git+https://github.com/DoubleML/doubleml-for-py@${{ env.DML_BRANCH }}"
7173
@@ -75,7 +77,9 @@ jobs:
7577
git config --global user.email '[email protected]'
7678
7779
- name: Run scripts
78-
run: uv run --project monte-cover/pyproject.toml ${{ matrix.script }}
80+
run: |
81+
source monte-cover/.venv/bin/activate
82+
uv run --project monte-cover/pyproject.toml ${{ matrix.script }}
7983
8084
- name: Commit any existing changes
8185
run: |

0 commit comments

Comments
 (0)