From e83d7afa1231df96008e70f9f48982b8a43e7e4c Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 13 May 2024 07:46:21 +0800 Subject: [PATCH] Ensure repos are updated before installing. --- .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 a9b8966..78460c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install system dependencies - run: sudo apt install -y pkg-config python3-dev libgirepository1.0-dev gir1.2-gtk-3.0 + run: | + sudo apt update -y + sudo apt install -y pkg-config python3-dev libgirepository1.0-dev gir1.2-gtk-3.0 - name: Install Tox run: |