From 5208430861018e84109fa650642cb3fc6343bab2 Mon Sep 17 00:00:00 2001 From: mirko-pagliai Date: Sat, 30 Dec 2023 12:00:05 +0100 Subject: [PATCH] fixed --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc4538d..402d40d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,20 +99,20 @@ jobs: - name: Run psalm if: success() || failure() - run: vendor/bin/psalm.phar --output-format=github --php-version=8.2 + run: vendor/bin/psalm --output-format=github --php-version=8.2 - name: Run phpstan if: success() || failure() - run: vendor/bin/phpstan.phar analyse --error-format=github + run: vendor/bin/phpstan analyse --error-format=github testsuite-windows: runs-on: windows-2019 - name: Windows - PHP 7.4 + name: Windows - PHP 8.2 env: EXTENSIONS: mbstring, intl, gd - PHP_VERSION: '7.4' + PHP_VERSION: '8.2' steps: - uses: actions/checkout@v3