Skip to content

Commit 35faeca

Browse files
committed
chore: add WordPress 6.9 to test matrix
- Reduce test matrix to WordPress 6.9 and 6.8 only - Test against PHP 8.3, 8.2, and 8.1 - Update nightly workflow to use WordPress 6.9 as base - Update .env.dist default to WordPress 6.9 Closes #397
1 parent 812c30f commit 35faeca

File tree

3 files changed

+5
-22
lines changed

3 files changed

+5
-22
lines changed

.env.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ MYSQL_USER=${DB_USER}
4949
MYSQL_PASSWORD=${DB_PASSWORD}
5050

5151
# Change these to test different versions of WP, WPGraphQL, ACF etc.
52-
WP_VERSION=6.2
52+
WP_VERSION=6.9
5353
PHP_VERSION=8.0
5454
WPGRAPHQL_VERSION=latest

.github/workflows/test-plugin-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Create Docker Containers
1717
env:
1818
PHP_VERSION: 8.2
19-
WP_VERSION: 6.8
19+
WP_VERSION: 6.9
2020
working-directory: ./
2121
run: |
2222
docker compose build \
23-
--build-arg WP_VERSION=6.8 \
23+
--build-arg WP_VERSION=6.9 \
2424
--build-arg PHP_VERSION=8.2
2525
docker compose up -d
2626

.github/workflows/test-plugin.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,8 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
php: [ '8.2', '7.4' ]
15-
wordpress: [ '6.8', '6.7', '6.6','6.5', '6.4', '6.3', '6.2', '6.1' ]
16-
exclude:
17-
- php: 8.2
18-
wordpress: 6.1
19-
- php: 7.4
20-
wordpress: 6.2
21-
- php: 7.4
22-
wordpress: 6.3
23-
- php: 7.4
24-
wordpress: 6.4
25-
- php: 7.4
26-
wordpress: 6.5
27-
- php: 7.4
28-
wordpress: 6.6
29-
- php: 7.4
30-
wordpress: 6.7
31-
- php: 7.4
32-
wordpress: 6.8
14+
php: [ '8.3', '8.2', '8.1' ]
15+
wordpress: [ '6.9', '6.8' ]
3316
fail-fast: false
3417
name: WordPress ${{ matrix.wordpress }}, PHP ${{ matrix.php }}
3518
steps:

0 commit comments

Comments
 (0)