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: fix up the test matrix #166

Merged
merged 1 commit into from
Sep 10, 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
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
# Notes regarding supported versions in WP:
# The base matrix only contains the PHP versions which are supported on all supported WP versions.
php: ['7.0', '7.1', '7.2', '7.3']
php: ['7.2', '7.3']
wp: ['latest', '5.2']
experimental: [false]

Expand Down Expand Up @@ -69,6 +69,20 @@ jobs:
- php: '5.6'
wp: '5.2'
experimental: false
# PHP 7.0 was supported up to WP 6.5.
- php: '7.0'
wp: '5.2'
experimental: false
- php: '7.0'
wp: '6.5'
experimental: false
# PHP 7.1 was supported up to WP 6.5.
- php: '7.1'
wp: '5.2'
experimental: false
- php: '7.1'
wp: '6.5'
experimental: false

# Complement the builds run via the matrix with some additional builds against specific WP versions.
- php: '7.3'
Expand Down
Loading