Skip to content

Commit 86cbe37

Browse files
committed
Update test workflow
1 parent 458a74a commit 86cbe37

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: Install system dependencies
16-
run: sudo apt-get install --no-install-recommends --yes libvips
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install --no-install-recommends --yes libvips
1719
- uses: actions/checkout@v4
1820
- name: Set up Python 3.10
1921
uses: actions/setup-python@v5
2022
with:
2123
python-version: "3.10"
22-
cache: pip
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v5
2326
- name: Install dependencies
24-
run: python -m pip install ".[tests]"
27+
run: uv pip install ".[tests]"
2528
- name: Test with pytest
26-
run: pytest
29+
run: uv run pytest

0 commit comments

Comments
 (0)