From 85db901c8d32c052dc541230ddf83505b27f497c Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Fri, 16 May 2025 15:35:44 +0200 Subject: [PATCH] CI: run `apt-get update` before installing libvips --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73c3168..4768ee5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install libvips - run: sudo apt-get install --no-install-recommends libvips + run: | + sudo apt-get update + sudo apt-get install --no-install-recommends libvips - name: Lint with flake8 run: |