Skip to content

Commit

Permalink
Fix composer install
Browse files Browse the repository at this point in the history
ignore version reqs, because most packages are not official supporting
php 8.4 yet
  • Loading branch information
markuspoerschke committed Jul 11, 2024
1 parent 9fea54f commit 6d899f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ jobs:
run: "PHPUNIT_FLAGS=--no-coverage make test-phpunit test-psalm test-examples"

- name: "Run tests"
if: ${{ matrix.php-version == '8.2' || matrix.php-version == '8.3' || matrix.php-version == '8.4' }}
if: ${{ matrix.php-version == '8.2' || matrix.php-version == '8.3' }}
run: "make -j -O test"

- name: "Run tests (next PHP version)"
if: ${{ matrix.php-version == '8.4' }}
run: "COMPOSER_IGNORE_PLATFORM_REQ=1 make -j -O test"

- name: "Send code coverage"
if: ${{ matrix.php-version == '8.3' }}
uses: codecov/[email protected]

0 comments on commit 6d899f6

Please sign in to comment.