From c0f06a20759b4f72a2a545b96a11759f21377eb7 Mon Sep 17 00:00:00 2001 From: Prince D Rusweka Rwabongoya Date: Sat, 26 Apr 2025 03:57:59 -0400 Subject: [PATCH] Update backend-ci.yml --- .github/workflows/backend-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 3e2b89c..061a3af 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -28,7 +28,7 @@ jobs: run: | python -m venv venv source venv/bin/activate - pip install -r requirements.txt + pip install -r requirements.txt # Ensure all dependencies are installed, including requests - name: Cache Python dependencies uses: actions/cache@v3 # Using the latest stable version @@ -73,7 +73,7 @@ jobs: run: | python -m venv venv source venv/bin/activate - pip install -r backend/requirements.txt + pip install -r backend/requirements.txt # Ensure all dependencies are installed, including requests pip install pytest-html - name: Cache Python dependencies