From 11da6848685ad73bc56c47740583c3d099da9819 Mon Sep 17 00:00:00 2001 From: Emre <69351390+emredeveloper@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:15:02 +0300 Subject: [PATCH] Install project requirements in CI workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8e733f..f62fb91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install torch --index-url https://download.pytorch.org/whl/cpu - pip install numpy pandas scikit-learn + pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu pip install -r requirements-dev.txt - name: Ruff (tests only)