We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d086ad commit 4b00be5Copy full SHA for 4b00be5
.github/workflows/test.yml
@@ -291,14 +291,12 @@ jobs:
291
uses: actions/checkout@v4
292
293
- name: Setup ini config
294
- if: ${{ matrix.os != 'windows-latest' }}
+ if: ${{ matrix.custom_ini == true && matrix.os != 'windows-latest' }}
295
id: set_ini
296
shell: bash
297
run: |
298
# Set the "short_open_tag" ini to make sure specific conditions are tested.
299
- if [[ ${{ matrix.custom_ini }} == true && "${{ matrix.php }}" == '7.2' ]]; then
300
- echo 'PHP_INI=, date.timezone=Australia/Sydney, short_open_tag=On' >> "$GITHUB_OUTPUT"
301
- fi
+ echo 'PHP_INI=, date.timezone=Australia/Sydney, short_open_tag=On' >> "$GITHUB_OUTPUT"
302
303
- name: Install PHP
304
uses: shivammathur/setup-php@v2
0 commit comments