diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 755107c0fbdb5d32d6921080d211abf001cdf653..c3012446bd5449ae9f665140fc732a6ec98f4645 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..."