Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Actions: update for branch-cut of PHP 8.4 #208

Merged
merged 1 commit into from
Nov 7, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', 'nightly']
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', 'nightly']

continue-on-error: ${{ matrix.php == 'nightly' }}

Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
phpunit: ['auto']
coverage: [true]
experimental: [false]
Expand Down Expand Up @@ -82,6 +82,10 @@ jobs:
phpunit: '9.3.0'
coverage: true
experimental: false
- php: '8.4'
phpunit: '9.6.21'
coverage: true
experimental: false

# Experimental builds.
- php: 'nightly'
Expand Down Expand Up @@ -209,6 +213,7 @@ jobs:
# - PHPUnit 8 supports PHP 8.1 as of PHPUnit 8.5.19 (for our purposes).
# - PHPUnit 8 supports PHP 8.2 as of PHPUnit 8.5.19 (for our purposes).
# - PHPUnit 8 supports PHP 8.3 as of PHPUnit 8.5.19 (for our purposes).
# - PHPUnit 8 supports PHP 8.4 as of PHPUnit 8.5.40 (for our purposes).
# - PHPUnit 8 does not support running code coverage on PHP 8.0 or higher.
- php: '7.2'
phpunit: '8.0'
Expand All @@ -224,9 +229,9 @@ jobs:
phpunit: '8.5.12'
- php: '8.0'
phpunit: '8'
- php: '8.3'
phpunit: '8.5.19'
- php: '8.3'
- php: '8.4'
phpunit: '8.5.40'
- php: '8.4'
phpunit: '8'

# PHPUnit 9 is fully supported for the officially supported PHP versions.
Expand All @@ -235,6 +240,7 @@ jobs:
# - PHPUnit 9 supports PHP 8.1 as of PHPUnit 9.5.8 (for our purposes).
# - PHPUnit 9 supports PHP 8.2 as of PHPUnit 9.5.8 (for our purposes).
# - PHPUnit 9 supports PHP 8.3 as of PHPUnit 9.5.8 (for our purposes).
# - PHPUnit 9 supports PHP 8.4 as of PHPUnit 9.6.21 (for our purposes).
- php: '7.3'
phpunit: '9.0'
coverage: true
Expand All @@ -256,6 +262,10 @@ jobs:
phpunit: '9.5.8'
- php: '8.3'
phpunit: '9'
- php: '8.4'
phpunit: '9.6.21'
- php: '8.4'
phpunit: '9'
coverage: true

# Experimental builds.
Expand Down