Skip to content

Commit

Permalink
[TASK] Drop the workaround for composer install on PHP 8.2
Browse files Browse the repository at this point in the history
* [TASK] Drop the workaround for `composer install` on PHP 8.2

* Revert added cgl step

---------

Co-authored-by: Oliver Klee <typo3-coding@oliverklee.de>
  • Loading branch information
o-ba and oliverklee committed Feb 15, 2024
1 parent 7eb42ef commit b6fdaab
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,8 @@ jobs:
restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer-

- name: Install dependencies
if: ${{ matrix.php <= '8.1' }}
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader

- name: Install dependencies PHP 8.2
# @todo: Needed until prophecy (req by phpunit) allows PHP 8.2, https://github.com/phpspec/prophecy/issues/556
if: ${{ matrix.php > '8.1' }}
run: composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader --ignore-platform-req=php+

- name: Run unit tests
run: composer tests:unit

Expand Down

0 comments on commit b6fdaab

Please sign in to comment.