Skip to content

Commit

Permalink
chore: move continue-on-error locations
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Aug 21, 2024
1 parent c018b02 commit 9acf973
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
include:
- php-version: '8.4'
composer-option: '--ignore-platform-req=php'
continue-on-error: true
continue-on-error: ${{ matrix.php-version == '8.4' }}

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
mysql-version: '5.7'
- php-version: '8.4'
composer-option: '--ignore-platform-req=php'
continue-on-error: true
continue-on-error: ${{ matrix.php-version == '8.4' }}

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
include:
- php-version: '8.4'
composer-option: '--ignore-platform-req=php'
continue-on-error: true
continue-on-error: ${{ matrix.php-version == '8.4' }}

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
include:
- php-version: '8.4'
composer-option: '--ignore-platform-req=php'
continue-on-error: true
continue-on-error: ${{ matrix.php-version == '8.4' }}

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand Down

0 comments on commit 9acf973

Please sign in to comment.