소스 검색

Fix issue with PHPUnitBridge autoload

Jordi Boggiano 4 년 전
부모
커밋
88ced66f2c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .github/workflows/continuous-integration.yml

+ 2 - 1
.github/workflows/continuous-integration.yml

@@ -124,7 +124,8 @@ jobs:
       - name: "Run tests for PHP 8"
         if: "matrix.php-version == '8.0'"
         run: |
+          # hack to workaround issue with react/promise, normally should just call bin/composer remove and skip the rm
           rm -rf vendor/symfony/phpunit-bridge
-          bin/composer remove --dev symfony/phpunit-bridge --ignore-platform-reqs
+          composer remove --dev symfony/phpunit-bridge --ignore-platform-reqs
           bin/composer require phpunit/phpunit:^7.5 --ignore-platform-reqs
           vendor/bin/phpunit