We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458a74a commit 86cbe37Copy full SHA for 86cbe37
.github/workflows/test.yml
@@ -13,14 +13,17 @@ jobs:
13
14
steps:
15
- name: Install system dependencies
16
- run: sudo apt-get install --no-install-recommends --yes libvips
+ run: |
17
+ sudo apt-get update
18
+ sudo apt-get install --no-install-recommends --yes libvips
19
- uses: actions/checkout@v4
20
- name: Set up Python 3.10
21
uses: actions/setup-python@v5
22
with:
23
python-version: "3.10"
- cache: pip
24
+ - name: Install uv
25
+ uses: astral-sh/setup-uv@v5
26
- name: Install dependencies
- run: python -m pip install ".[tests]"
27
+ run: uv pip install ".[tests]"
28
- name: Test with pytest
- run: pytest
29
+ run: uv run pytest
0 commit comments