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 the matrix for latest WP/PHP #158

Merged
merged 2 commits into from
Mar 22, 2024
Merged
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
50 changes: 34 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,49 +24,67 @@ jobs:
experimental: [false]

include:
# Complement the builds run via the matrix with high/low WP builds for PHP 7.4 and 8.0.
# PHP 8.0 is sort of supported since WP 5.6.
# PHP 7.4 is supported since WP 5.3.
# Complement the builds run via the matrix with high/low WP builds for PHP 5.6 and PHP 7.4 up to 8.3.
# PHP 8.3 is beta-supported since WP 6.4.
- php: '8.3'
wp: 'latest'
experimental: false
- php: '8.3'
wp: '6.4'
experimental: false
# PHP 8.2 is beta-supported since WP 6.1 and Requests was updated in WP 6.2.
# That means that WP 6.2 is the earliest WP version which can be used with PHP 8.1 for this plugin.
- php: '8.2'
wp: 'latest'
experimental: false
- php: '8.2'
wp: '6.2'
experimental: false
# PHP 8.1 is beta-supported since WP 5.9 and Requests was updated in WP 6.2.
# That means that WP 6.2 is the earliest WP version which can be used with PHP 8.1 for this plugin.
- php: '8.1'
wp: 'latest'
experimental: false
- php: '8.1'
wp: '6.2'
experimental: false
# PHP 8.0 is beta-supported since WP 5.6.
- php: '8.0'
wp: 'latest'
experimental: false
- php: '8.0'
wp: '5.6'
experimental: false
# PHP 7.4 is supported since WP 5.3.
- php: '7.4'
wp: 'latest'
experimental: false
- php: '7.4'
wp: '5.4'
experimental: false

# Complement the builds run via the matrix with some additional builds against specific WP versions.
- php: '7.3'
wp: '5.3'
experimental: false
# PHP 5.6 was supported up to WP 6.2.
- php: '5.6'
wp: '5.5'
wp: '6.2'
experimental: false
- php: '5.6'
wp: '5.2'
experimental: false

# Complement the builds run via the matrix with some additional builds against specific WP versions.
- php: '7.3'
wp: '6.0'
experimental: false
- php: '7.2'
wp: '5.7'
experimental: false
- php: '7.0'
wp: '5.8'
experimental: false
- php: '7.0'
- php: '7.4'
wp: '6.3'
experimental: false

# Experimental builds. These are allowed to fail.
- php: '8.1'
wp: 'trunk'
experimental: true
- php: '8.2'
wp: 'trunk'
experimental: true
- php: '7.4'
wp: 'trunk'
experimental: true
Expand Down
Loading