Skip to content

Commit

Permalink
Update build workflow configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Jun 6, 2024
1 parent b0c3d79 commit ed7ef7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ jobs:
php --version
composer --version
if [ "" != "${{ matrix.symfony-version }}" ]; then SYMFONY_VERSION=${{ matrix.symfony-version }}; else SYMFONY_VERSION="4.4.*"; fi;
if [[ 7* != "${{ matrix.symfony-version }}" ]]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
if [ "6.2.*" == "${{ matrix.symfony-version }}" ]; then composer require "doctrine/dbal:^3.0" --no-update; fi;
if [ "7.0.*" != "${{ matrix.symfony-version }}" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
if [ "7.1.*" != "${{ matrix.symfony-version }}" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
COMPOSER_MEMORY_LIMIT=-1 composer update
- name: "Application"
Expand Down

0 comments on commit ed7ef7c

Please sign in to comment.