Skip to content

Commit 740d5cc

Browse files
Use UV to install the package
1 parent 66c0f9b commit 740d5cc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/code_changes.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ jobs:
2424
steps:
2525
- name: Checkout repo
2626
uses: actions/checkout@v2
27+
- name: Install uv
28+
uses: astral-sh/setup-uv@v5
2729

2830
- name: Set up Python
2931
uses: actions/setup-python@v2
3032
with:
3133
python-version: '3.10'
3234

3335
- name: Install package
34-
run: make install
36+
run: uv pip install .[dev] --system
3537
- name: Download data inputs
3638
run: make download
3739
env:

.github/workflows/pr_code_changes.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ jobs:
2424
steps:
2525
- name: Checkout repo
2626
uses: actions/checkout@v2
27+
- name: Install uv
28+
uses: astral-sh/setup-uv@v5
2729

2830
- name: Set up Python
2931
uses: actions/setup-python@v2
3032
with:
3133
python-version: '3.10'
3234

3335
- name: Install package
34-
run: make install
36+
run: uv pip install .[dev] --system
3537
- name: Download data inputs
3638
run: make download
3739
env:

0 commit comments

Comments
 (0)