Loading .gitlab-ci.yml +3 −3 Original line number Diff line number Diff line Loading @@ -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 Loading @@ -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 Loading @@ -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 Loading Loading
.gitlab-ci.yml +3 −3 Original line number Diff line number Diff line Loading @@ -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 Loading @@ -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 Loading @@ -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 Loading