From 74e4ba30cb8c3b4afb74ceabf878d9971f455dd7 Mon Sep 17 00:00:00 2001 From: ren <18050944+renintw@users.noreply.github.com> Date: Fri, 24 Mar 2023 02:58:52 +0800 Subject: [PATCH] 123 --- .github/workflows/phpunit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index cff437b..9baf4d8 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -26,14 +26,16 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '7.4' + php-version: '8.1' tools: cs2pr, phpcs, composer - name: Install dependencies - run: composer install --dev --prefer-dist --no-progress --no-suggest + run: composer install --dev --prefer-dist --no-progress --no-suggest - name: Run phpcs run: phpcs -q --report=checkstyle src | cs2pr + with: + phpcs_bin_path: './vendor/bin/phpcs' unit-php: name: PHP Unit Tests