Skip to content

Commit

Permalink
Use ternary expression for environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Zombaya committed Feb 29, 2024
1 parent be596d8 commit 53d9605
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ jobs:

- name: Echo environmentvariable
run: echo $SYMFONY_PHPUNIT_VERSION
env:
SYMFONY_PHPUNIT_VERSION: "${{ matrix.dependency-versions == 'lowest' && '7' || '' }}"

- name: Unit Tests
run: vendor/bin/simple-phpunit
env:
SYMFONY_PHPUNIT_VERSION: "${{ matrix.dependency-versions == 'lowest' && '7' || '' }}"

- name: Install symlinks for demo's
uses: "ramsey/composer-install@v2"
Expand Down

0 comments on commit 53d9605

Please sign in to comment.