From 823cfea2e78b6d973098712f33e9d4c4030c526d Mon Sep 17 00:00:00 2001 From: Art4 Date: Tue, 28 Nov 2023 14:20:17 +0100 Subject: [PATCH] fix conditions in github actions --- .github/workflows/unit-tests.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 0da384d..01609e7 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -23,23 +23,14 @@ jobs: fetch-depth: 2 - name: Setup PHP with composer and extensions - if: ${{ matrix.php =< '8.3' }} uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php }} coverage: xdebug tools: none - - name: Setup PHP with composer and extensions (PHP 8.4) - if: ${{ matrix.php >= '8.4' }} - uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php - with: - php-version: ${{ matrix.php }} - coverage: none - tools: none - - name: "Install Composer dependencies" - if: ${{ matrix.php =< '8.3' }} + if: ${{ matrix.php <= '8.3' }} uses: "ramsey/composer-install@v2" - name: "Install Composer dependencies (PHP 8.4)"