From f73c59afc5b1614fcc842c4d652e19f787870fc2 Mon Sep 17 00:00:00 2001 From: Davide Ricci Date: Wed, 18 Jun 2025 18:10:18 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 755107c..c301244 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,10 +30,10 @@ validate_code: before_script: - pip install --upgrade pip # Install all tools at once - - pip install ".[dev]" # Assuming you have a pyproject.toml with dev dependencies like isort, autopep8, pylint - # Or install them manually: - # - pip install -e . - # - pip install isort autopep8 pylint + # - pip install ".[dev]" # Assuming you have a pyproject.toml with dev dependencies like isort, autopep8, pylint + # # Or install them manually: + - pip install -e . + - pip install isort autopep8 pylint script: # --- STEP 1: Format Code --- - echo "Removing trailing whitespaces..." -- GitLab