diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c77d40f..10372ab6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest name: "Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" - + strategy: fail-fast: false matrix: @@ -31,6 +31,9 @@ jobs: - sylius: ~1.8.0 symfony: ^5.2 + - + sylius: ~1.10.0 + php: 7.3 env: APP_ENV: test @@ -108,6 +111,11 @@ jobs: if: matrix.sylius != '' run: composer require "sylius/sylius:${{ matrix.sylius }}" --no-update --no-scripts --no-interaction + - + name: Add Admin API Bundle for Sylius >= 1.10 + if: matrix.sylius != '~1.8.0' && matrix.sylius != '~1.9.0' + run: composer require sylius/admin-api-bundle --no-update --no-scripts --no-interaction + - name: Install PHP dependencies run: composer install --no-interaction