Commit 9a9a3850 authored by Davide Ricci's avatar Davide Ricci
Browse files

Update .gitlab-ci.yml file

parent e91a6c54
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ cache:
stages:
  - setup_and_format # A single stage to perform all modifications sequentially
  - lint # A stage for checks that don't modify code (like pylint)
  - auto_commit # Optional stage for committing changes
 # - auto_commit # Optional stage for committing changes

# Job 1: Install Noctua and its dependencies
install_noctua:
@@ -87,7 +87,7 @@ apply_isort:
    - echo "Current directory $(pwd)"
    - ls -la
    - echo "Applying isort to '${FORMAT_TARGETS}' directory..."
    # isort will use pyproject.toml for configuration if present in the workspace root
    # isort will use pyproject.toml for configuration
    - |
      if [ -d "${FORMAT_TARGETS}" ]; then
        isort "${FORMAT_TARGETS}"