From c64ea5417a3a21ef857dc0bfbaa065db25475695 Mon Sep 17 00:00:00 2001 From: John Hsu Date: Mon, 16 May 2022 15:37:35 -0700 Subject: [PATCH] FIX github actions backend tests not running Trying to install libnss3-dev resulted in the archive missing from the repo. Trying to see if running an `apt-get update` to update the apt listings would fix it. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1983fbc44..a333f5b11 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,6 +30,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + sudo apt-get update sudo apt-get install -y --no-install-recommends --no-install-suggests libxmlsec1-dev libz-dev pip install -r requirements.txt -r requirements.dev.txt - name: Backend Unit Tests MariaDB