From 96536f69ef1b1156128e8db9e070e88916b7ace9 Mon Sep 17 00:00:00 2001 From: Valery Maslov Date: Fri, 11 Aug 2023 11:30:29 +0300 Subject: [PATCH] Add rector to workflow --- .github/workflows/lint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4943ad0c..544583c2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -54,6 +54,10 @@ jobs: if: always() && steps.install.outcome == 'success' run: vendor/bin/php-cs-fixer fix --diff --dry-run + - name: Rector + if: always() && steps.install.outcome == 'success' + run: vendor/bin/rector process src --clear-cache --dry-run + - name: Lint YAML files if: always() && steps.install.outcome == 'success' run: ./bin/console lint:yaml config --parse-tags