From 03291a5589bcb7cbe8c316477143e6ce77937d02 Mon Sep 17 00:00:00 2001 From: "Brett C." Date: Sat, 24 Feb 2024 21:40:24 +1100 Subject: [PATCH] Fix package installation Signed-off-by: Brett Calliss --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1adcb953..2f7cf41a 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,7 +21,7 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - sudo apt update && apt install podman + sudo apt update && sudo apt install -y podman python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi