Skip to content

Commit 641c445

Browse files
committed
1.2.0
GH actions
1 parent e735e95 commit 641c445

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616

1717
strategy:
1818
fail-fast: false
19-
max-parallel: 3
2019
matrix:
2120
python-version:
2221
- "3.9"
@@ -31,11 +30,19 @@ jobs:
3130

3231
steps:
3332
- uses: actions/checkout@v4
33+
3434
- name: Install the latest version of uv and set the python version
3535
uses: astral-sh/setup-uv@v5
3636
with:
3737
python-version: ${{ matrix.python-version }}
38+
39+
- name: Install libvips
40+
run: |
41+
sudo apt-get update
42+
sudo apt-get install --no-install-recommends libvips
43+
3844
- name: Install the project
3945
run: uv sync
46+
4047
- name: Run tests
4148
run: uv run pytest

0 commit comments

Comments
 (0)