From 3830c5765b8a1a887394b8b331f52e9a88b79aac Mon Sep 17 00:00:00 2001 From: Vincent Dauce Date: Fri, 16 Aug 2019 20:11:25 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9d24bcd350..a6ded07a41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,10 @@ jobs: - name: Composer install run: composer update --no-progress --ignore-platform-reqs - name: PHPCS - run: echo "toto new fixer" >> file.log + run: | + composer require friendsofphp/php-cs-fixer + ./vendor/bin/php-cs-fixer fix src + ./vendor/bin/php-cs-fixer fix tests - name: Auto Commit if: github.event.head_commit.author.name != 'PHP CS Fixer' run: |