Skip to content

Commit

Permalink
Merge pull request #732 from PHPCSStandards/feature/ghactions-fix-cod…
Browse files Browse the repository at this point in the history
…e-coverage-custom-ini

GH Actions: fix snafu with code coverage
  • Loading branch information
jrfnl authored Nov 26, 2024
2 parents c41a2a6 + 243aaf4 commit 9acd28c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ jobs:
shell: bash
run: |
# Set the "short_open_tag" ini to make sure specific conditions are tested.
if [[ ${{ matrix.custom_ini }} == true && "${{ matrix.php }}" == '5.4' ]]; then
echo 'PHP_INI=, date.timezone=Australia/Sydney, short_open_tag=On, asp_tags=On' >> "$GITHUB_OUTPUT"
if [[ ${{ matrix.custom_ini }} == true && "${{ matrix.php }}" == '7.2' ]]; then
echo 'PHP_INI=, date.timezone=Australia/Sydney, short_open_tag=On' >> "$GITHUB_OUTPUT"
fi
- name: Install PHP
Expand Down

0 comments on commit 9acd28c

Please sign in to comment.