From 99bfba294a210eeb9329c98d76b82285954404bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 27 Jan 2021 12:38:48 +0100 Subject: [PATCH] GH action PHP 8.0.1 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07ec0cd..f5bf192 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,10 @@ jobs: - 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' - 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