Skip to content

Commit a1bb0f7

Browse files
committed
update workflow
1 parent 40e7869 commit a1bb0f7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/did_sim.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,21 @@ jobs:
6161

6262
- name: Install Monte-Cover
6363
run: |
64-
uv sync --project monte-cover/pyproject.toml --venv .venv
64+
uv venv --project monte-cover/pyproject.toml
65+
uv sync --project monte-cover/pyproject.toml
6566
6667
- name: Install DoubleML from correct branch
6768
run: |
68-
uv pip uninstall doubleml
69-
uv pip install "doubleml @ git+https://github.com/DoubleML/doubleml-for-py@${{ env.DML_BRANCH }}"
69+
uv pip uninstall --project monte-cover/pyproject.toml doubleml
70+
uv pip install --project monte-cover/pyproject.toml "doubleml @ git+https://github.com/DoubleML/doubleml-for-py@${{ env.DML_BRANCH }}"
7071
7172
- name: Set up Git configuration
7273
run: |
7374
git config --global user.name 'github-actions'
7475
git config --global user.email '[email protected]'
7576
7677
- name: Run scripts
77-
run: uv run python ${{ matrix.script }}
78+
run: uv run --project monte-cover/pyproject.toml ${{ matrix.script }}
7879

7980
- name: Commit any existing changes
8081
run: |

0 commit comments

Comments
 (0)