Skip to content

Commit 4a54369

Browse files
authored
Merge pull request #5 from PythonIreland/allynh_uv_requirements_actions
Updating Actions to use uv.
2 parents 6dc28e3 + d5e8aeb commit 4a54369

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/validate-csv.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ jobs:
2727

2828
- name: Install dependencies
2929
run: |
30-
python -m pip install --upgrade pip
31-
pip install pytest==9.0.1
30+
python -m pip install --upgrade uv
31+
uv venv .venv
32+
source .venv/bin/activate
33+
uv pip install -r requirements.txt
3234
3335
- name: Run CSV validation tests
3436
run: |
37+
source .venv/bin/activate
3538
pytest tests/test_csv.py -v

0 commit comments

Comments
 (0)