From 96a875c88179e0f8c980a6d5f17a7662b94ded55 Mon Sep 17 00:00:00 2001 From: Anthony Birkett <antbir@gmail.com> Date: Mon, 31 May 2021 15:10:42 +0100 Subject: [PATCH] Fix CS fixer workflow. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed546dc..fc28a13 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - name: Install dependencies run: composer install --no-interaction --no-progress - name: Run cs-fixer - run: php${{ matrix.php }} vendor/bin/php-cs-fixer --config=.php-cspfixer.php + run: php${{ matrix.php }} vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php - name: Run tests run: php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning - name: Run phpstan