From e9f3a0a005eca8baa377f13423107b35985d9119 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 4 Sep 2023 08:57:33 +0200 Subject: [PATCH] issued apt-get update on package installation --- .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 7aad1bd..36a386e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,7 +150,9 @@ jobs: - name: Install packages if: matrix.install - run: sudo apt-get -y install ${{matrix.install}} + run: | + sudo apt-get update + sudo apt-get -y install ${{matrix.install}} - name: Setup Boost run: |