Skip to content

Commit

Permalink
Update Rector command in GitHub workflow
Browse files Browse the repository at this point in the history
Replaced `make lint-rector` with `vendor/bin/rector process --dry-run` for better control and customization of the Rector tool in CI pipeline. This change ensures a direct invocation of Rector with specified options without intermediary make tasks.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Oct 6, 2024
1 parent f442bad commit 5817e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: "composer update --no-interaction --no-progress --no-suggest"

- name: "Rector"
run: "make lint-rector"
run: "vendor/bin/rector process --dry-run"

- name: "is Rector check succeeded"
if: ${{ success() }}
Expand Down

0 comments on commit 5817e70

Please sign in to comment.