Skip to content

Commit

Permalink
fix: SYMFONY_REQUIRE env was not setup properly
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Oct 25, 2023
1 parent 4a966c2 commit fd30cbd
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: "PHPUnit"
runs-on: "${{ matrix.os }}"
env:
SYMFONY_REQUIRE: ${{matrix.symfony-require}}
SYMFONY_REQUIRE: ${{matrix.symfony-version}}

strategy:
matrix:
Expand All @@ -26,8 +26,6 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
stability:
- "stable"
symfony-version:
- "5.4.x"
- "6.3.x"
Expand All @@ -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"
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit fd30cbd

Please sign in to comment.