From b6ef949201eb814a2715161e34a04aa1c3b6481e Mon Sep 17 00:00:00 2001 From: Esteban Vincent Date: Sat, 30 May 2026 23:56:22 +0200 Subject: [PATCH] zizi --- .github/workflows/ci-cd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index b2607ee..7dae1c1 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -14,11 +14,12 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies run: | + apt-get install -y python3-pip python3 -m pip install --upgrade pip - pip install -r src/requirements.txt + pip3 install -r src/requirements.txt - name: Lint and format with Ruff run: | - pip install ruff + pip3 install ruff ruff check src ruff format --check src