From fd30cbd8b93ae54c060cf1dc09c5914b48b6891d Mon Sep 17 00:00:00 2001 From: Kevin Bond Date: Wed, 25 Oct 2023 09:51:34 -0400 Subject: [PATCH] fix: SYMFONY_REQUIRE env was not setup properly --- .github/workflows/continuous-integration.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 75477011..ee34b7b7 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,7 +15,7 @@ jobs: name: "PHPUnit" runs-on: "${{ matrix.os }}" env: - SYMFONY_REQUIRE: ${{matrix.symfony-require}} + SYMFONY_REQUIRE: ${{matrix.symfony-version}} strategy: matrix: @@ -26,8 +26,6 @@ jobs: - "8.0" - "8.1" - "8.2" - stability: - - "stable" symfony-version: - "5.4.x" - "6.3.x" @@ -42,7 +40,6 @@ jobs: os: "ubuntu-20.04" php-version: "7.4" driver-version: "1.5.0" - stability: "stable" symfony-version: "5.4.*" exclude: - php-version: "7.4" @@ -99,9 +96,6 @@ jobs: - name: "Globally install symfony/flex" run: "composer global require --no-progress --no-scripts --no-plugins symfony/flex && composer global config --no-plugins allow-plugins.symfony/flex true" - - name: "Set minimum-stability to stable in Composer" - run: "composer config minimum-stability ${{ matrix.stability }}" - - name: "Install dependencies with Composer" uses: "ramsey/composer-install@v2" with: