Skip to content

Commit 292db90

Browse files
authored
CI: run apt-get update before installing libvips (#538)
1 parent 1208ca6 commit 292db90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Install libvips
26-
run: sudo apt-get install --no-install-recommends libvips
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install --no-install-recommends libvips
2729
2830
- name: Lint with flake8
2931
run: |

0 commit comments

Comments
 (0)