Commit 0c5d735f authored by Davide Ricci's avatar Davide Ricci
Browse files

Update .gitlab-ci.yml file

parent c65771a9
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ fix_trailing_whitespaces:
    - ls -la
    - echo "Removing trailing whitespaces from '${FORMAT_TARGETS}' directory..."
    - find "${FORMAT_TARGETS}" -type f -name "*.py" -exec sed -i 's/[[:space:]]*$//' {} \;
      echo "Trailing whitespaces removed."
    - echo "Trailing whitespaces removed."
  artifacts:
    paths:
      - . # Pass the modified workspace
@@ -74,7 +74,7 @@ apply_isort:
    - echo "Applying isort to '${FORMAT_TARGETS}' directory..."
    # isort will use pyproject.toml for configuration
    - isort "${FORMAT_TARGETS}"
      echo "isort formatting complete."
    - echo "isort formatting complete."
  artifacts:
    paths:
      - . # Pass the modified workspace
@@ -94,7 +94,7 @@ apply_autopep8:
    - ls -la
    - echo "Applying autopep8 to '${FORMAT_TARGETS}' directory..."
    - autopep8 --in-place --recursive --aggressive --aggressive "${FORMAT_TARGETS}"
      echo "autopep8 formatting complete."
    - echo "autopep8 formatting complete."
  artifacts:
    paths:
      - . # Pass the modified workspace