From 5817e70c6c4cf26e3ac7c230dd4c52accb2c8e4a Mon Sep 17 00:00:00 2001 From: mesilov Date: Mon, 7 Oct 2024 01:42:04 +0600 Subject: [PATCH] Update Rector command in GitHub workflow 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 --- .github/workflows/rector.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rector.yml b/.github/workflows/rector.yml index 4a0bf8a..ec35b52 100644 --- a/.github/workflows/rector.yml +++ b/.github/workflows/rector.yml @@ -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() }}