From 23ac62e2ea9fa6353572e5f8e5179ff5ffd4628f Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Wed, 6 Jul 2022 05:35:51 -0400 Subject: [PATCH] Revert "test symf require" This reverts commit 8d8a414839fe8b96d6452e3e7b902a33c3ee5440. --- .github/workflows/ci.yaml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1c6ecd65d..1a6b24ba5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: run: "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff" test: - name: "PHP ${{ matrix.php-version }} + @${{ matrix.symfony-require }} ${{ matrix.dependency-versions }} deps" + name: "PHP ${{ matrix.php-version }} + @${{ matrix.symfony-version }} ${{ matrix.dependency-versions }} deps" runs-on: ubuntu-18.04 @@ -83,7 +83,7 @@ jobs: - 1337:1337 env: - SYMFONY_REQUIRE: ${{ matrix.symfony-require }} + SYMFONY_VERSION: ${{ matrix.symfony-version }} MAKER_ALLOW_DEV_DEPS_IN_APP: ${{ matrix.allow-dev-deps-in-apps }} strategy: @@ -91,7 +91,7 @@ jobs: matrix: php-version: - '8.1' - symfony-require: + symfony-version: - '5.4.*' - '5.4.x-dev' - '6.0.x-dev' @@ -102,11 +102,11 @@ jobs: include: # testing lowest PHP version with LTS - php-version: '8.0.0' - symfony-require: '5.4.*' + symfony-version: '5.4.*' dependency-versions: 'lowest' # testing lowest php version with highest 5.x stable - php-version: '8.0.0' - symfony-require: '5.4.*' + symfony-version: '5.4.*' dependency-versions: 'highest' steps: @@ -135,12 +135,6 @@ jobs: - name: "Add PHPUnit matcher" run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - name: "Allow the Flex Plugin" - run: composer global config --no-plugins allow-plugins.symfony/flex true - - - name: "Require symfony/flex" - run: composer global require --no-progress --no-scripts symfony/flex - - name: "Composer install" uses: "ramsey/composer-install@v1" with: