Skip to content

Commit 823cfea

Browse files
committed
fix conditions in github actions
1 parent 1bcedfb commit 823cfea

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,14 @@ jobs:
2323
fetch-depth: 2
2424

2525
- name: Setup PHP with composer and extensions
26-
if: ${{ matrix.php =< '8.3' }}
2726
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
2827
with:
2928
php-version: ${{ matrix.php }}
3029
coverage: xdebug
3130
tools: none
3231

33-
- name: Setup PHP with composer and extensions (PHP 8.4)
34-
if: ${{ matrix.php >= '8.4' }}
35-
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
36-
with:
37-
php-version: ${{ matrix.php }}
38-
coverage: none
39-
tools: none
40-
4132
- name: "Install Composer dependencies"
42-
if: ${{ matrix.php =< '8.3' }}
33+
if: ${{ matrix.php <= '8.3' }}
4334
uses: "ramsey/composer-install@v2"
4435

4536
- name: "Install Composer dependencies (PHP 8.4)"

0 commit comments

Comments
 (0)