Skip to content

Commit

Permalink
GH Actions: fix up the test matrix (#166)
Browse files Browse the repository at this point in the history
WP 6.6 dropped support for PHP 7.0 and 7.1, so test runs for those PHP versions can no longer run against WP `latest`, but need to be limited to max WP 6.5.

Co-authored-by: jrfnl <jrfnl@users.noreply.github.com>
  • Loading branch information
jrfnl and jrfnl authored Sep 10, 2024
1 parent 71bdd41 commit 13b420d
Showing 1 changed file with 15 additions and 1 deletion.
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

0 comments on commit 13b420d

Please sign in to comment.