diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 4d0eda3f9..55673254b 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -62,17 +62,6 @@ jobs: - name: "Validate PSR class names" run: "composer dump-autoload --optimize --strict-psr" - - name: "Format the code" - continue-on-error: true - run: | - mkdir .cache - ./vendor/bin/phpcbf - # The -q option is required until phpcs v4 is released - name: "Run PHP_CodeSniffer" run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" - - - name: "Commit the changes" - uses: stefanzweifel/git-auto-commit-action@v6 - with: - commit_message: "apply phpcbf formatting"