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

ci: update tests to test against WordPress 6.3, simplify the matrix #2889

Merged
merged 4 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/deploy-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
matrix:
php: [ '8.1', '8.0', '7.4', '7.3' ]
wordpress: [ '6.2', '6.1', '6.0', '5.9', '5.8', '5.7.2', '5.6', '5.5.3' ]
include:
- php: '8.1'
wordpress: 'beta-6.3'
- php: '8.2'
wordpress: 'beta-6.3'
exclude:
- php: '8.0'
wordpress: '5.5.3'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/testing-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '7.4' ]
wordpress: [ '6.2', '6.1', '6.0', '5.9', '5.8', '5.7', '5.6' ]
php: [ '8.2', '8.1', '8.0' ]
wordpress: [ '6.2', '6.1' ]
include:
- php: '8.1'
wordpress: 'beta-6.3'
- php: '8.1'
wordpress: '6.2'
multisite: true
Expand All @@ -44,10 +46,8 @@ jobs:
wordpress: '5.7'
- php: '7.3'
wordpress: '5.6'
# This is a temporary exclusion until a php74 image is released. See #2780
exclude:
- php: '7.4'
wordpress: '6.2'
wordpress: '6.1.1'

steps:
- name: Cancel previous runs of this workflow (pull requests only)
Expand All @@ -65,7 +65,7 @@ jobs:
php-version: ${{ matrix.php }}
tools: composer:v2
extensions: json, mbstring

- name: Install dependencies
uses: ramsey/composer-install@v2
with:
Expand Down