Skip to content

Commit f1c2bbf

Browse files
Only run unit tests under PHP 8.4
1 parent 993e12c commit f1c2bbf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ jobs:
4343

4444
- name: "Install packages for PHP 8.4"
4545
if: ${{ matrix.php-version == '8.4' }}
46-
run: |
47-
composer install --ignore-platform-reqs
48-
composer up vimeo/[email protected] --ignore-platform-reqs
46+
run: "composer install --ignore-platform-reqs"
4947

5048
- name: "Run tests (old PHP versions)"
5149
if: ${{ matrix.php-version == '7.4' || matrix.php-version == '8.0' || matrix.php-version == '8.1' }}
@@ -57,7 +55,7 @@ jobs:
5755

5856
- name: "Run tests (PHP 8.4)"
5957
if: ${{ matrix.php-version == '8.4' }}
60-
run: "make -j -O test"
58+
run: "make -j -O test-phpunit test-examples"
6159

6260
- name: "Send code coverage"
6361
if: ${{ matrix.php-version == '8.3' }}

0 commit comments

Comments
 (0)