Commit f73c59af authored by Davide Ricci's avatar Davide Ricci
Browse files

Update .gitlab-ci.yml file

parent 1a5b1094
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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..."