diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d5a94d2..61c8db7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -82,6 +82,9 @@ jobs: - name: Install dependencies run: composer install + - name: Add doctrine/orm + run: composer require --no-progress --no-interaction --prefer-dist doctrine/orm:^2.0 + - name: Run PHPUnit tests run: composer phpunit if: matrix.coverage == 'none' diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index 1128cc1..2e1fd92 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -38,6 +38,9 @@ jobs: - name: Install dependencies run: composer install --no-progress --no-interaction --prefer-dist + - name: Add doctrine/orm + run: composer require --no-progress --no-interaction --prefer-dist doctrine/orm:^2.0 + - name: Run script run: composer phpstan