From b4b8cf86a94d0edbb49ee483953725c40083d2f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 4 May 2021 16:19:35 +0200 Subject: [PATCH] fix github action workflow --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8ad975..05aaf2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,14 +43,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Install php-cs-fixer - run: composer global require friendsofphp/php-cs-fixer - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.0' env: update: true + - name: Install php-cs-fixer + run: composer global require friendsofphp/php-cs-fixer - name: Run php-cs-fixer run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php_cs.php - name: Commit changes from php-cs-fixer