Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/reusable-phpunit-test.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -209,6 +209,7 @@ jobs:
DB: ${{ inputs.db-platform }}
TACHYCARDIA_MONITOR_GA: ${{ inputs.enable-profiling && 'enabled' || '' }}
TERM: xterm-256color
continue-on-error: ${{ inputs.php-version == '8.5' }}

- name: Upload coverage results as artifact
if: ${{ inputs.enable-artifact-upload }}
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/test-phpunit.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -60,6 +60,9 @@ jobs:
- '8.2'
- '8.3'
- '8.4'
include:
- php-version: '8.5'
composer-option: '--ignore-platform-req=php'

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand DownExpand Up@@ -99,6 +102,8 @@ jobs:
- php-version: '8.1'
db-platform: MySQLi
mysql-version: '5.7'
- php-version: '8.5'
composer-option: '--ignore-platform-req=php'

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand DownExpand Up@@ -127,6 +132,9 @@ jobs:
- '8.2'
- '8.3'
- '8.4'
include:
- php-version: '8.5'
composer-option: '--ignore-platform-req=php'

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand All@@ -153,6 +161,9 @@ jobs:
- '8.2'
- '8.3'
- '8.4'
include:
- php-version: '8.5'
composer-option: '--ignore-platform-req=php'

uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
with:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -89,7 +89,7 @@
"CodeIgniter\\ComposerScripts::postUpdate"
],
"post-autoload-dump": [
"@composer update --ansi --working-dir=utils"
"@composer update --ansi --working-dir=utils --ignore-platform-req=php"
],
"analyze": [
"Composer\\Config::disableProcessTimeout",
Expand Down
Loading