Skip to content

Commit

Permalink
GH Actions: do not allow the PHP 8.1 build to fail anymore
Browse files Browse the repository at this point in the history
... and test against the highest and lowest support WP version.
  • Loading branch information
jrfnl committed Jul 14, 2022
1 parent 74366f2 commit 23be95f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,15 @@ jobs:

include:
# Complement the builds run via the matrix with high/low WP builds for PHP 7.4 and 8.0.
# PHP 8.1 is sort of supported since WP 5.9.
# PHP 8.0 is sort of supported since WP 5.6.
# PHP 7.4 is supported since WP 5.3.
- php: '8.1'
wp: 'latest'
experimental: false
- php: '8.1'
wp: '5.9'
experimental: false
- php: '8.0'
wp: 'latest'
experimental: false
Expand Down Expand Up @@ -61,9 +68,6 @@ jobs:
experimental: false

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

0 comments on commit 23be95f

Please sign in to comment.