diff options
author | hwspeedy <ns@bigbear.dk> | 2024-02-19 23:41:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 23:41:01 +0100 |
commit | 1ddde3ca5d0f59e43625286f0962f2168b5e9da5 (patch) | |
tree | 8a248b6cc4f28be900cb8590a26ea3a6de2cc892 | |
parent | e63da9361b0098d23624a4b7077cfc233c1df700 (diff) |
FIX workflows test add missing apt update
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5232971..176bae37 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,9 @@ jobs: - uses: actions/checkout@v3 - name: Install system dependencies - run: sudo apt install libjson-glib-dev zlib1g-dev libsoup2.4-dev libgtk-3-dev libglib2.0-dev gettext + run: | + sudo apt update + sudo apt install -y libjson-glib-dev zlib1g-dev libsoup2.4-dev libgtk-3-dev libglib2.0-dev gettext - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |