Skip to content

Commit dcd3f67

Browse files
authored
Merge pull request #95 from Automattic/update/ci-test-matrix-and-readme
2 parents 336046b + 0956d26 commit dcd3f67

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/integration.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,18 @@ jobs:
4040

4141
strategy:
4242
matrix:
43-
wordpress: ['6.4', 'master']
44-
php: ['7.4', '8.3']
43+
include:
44+
# Check lowest supported WP version, with the lowest supported PHP.
45+
- wordpress: '6.4'
46+
php: '7.4'
47+
# Check latest WP with the latest PHP.
48+
- wordpress: 'master'
49+
php: 'latest'
4550
fail-fast: false
4651

52+
env:
53+
WP_ENV_CORE: WordPress/WordPress#${{ matrix.wordpress }}
54+
4755
steps:
4856
- name: Checkout code
4957
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -73,7 +81,7 @@ jobs:
7381
- name: Install npm dependencies and start wp-env
7482
run: |
7583
npm -g install @wordpress/env
76-
WP_ENV_PHP_VERSION=${{ matrix.php }} WP_ENV_CORE=WordPress/WordPress#${{ matrix.wordpress }} wp-env start
84+
wp-env start
7785
7886
- name: Run integration tests (single site)
7987
run: composer test:integration

media-explorer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Description: Extends the Media Manager to add support for external media services (currently Twitter, YouTube, and Instagram).
55
Version: 1.2
66
Requires at least: 6.4
7-
Requires PHP: 5.6
7+
Requires PHP: 7.4
88
Author: Code For The People Ltd, Automattic
99
Text Domain: mexp
1010
Domain Path: /languages/

readme.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
=== Media Explorer ===
22
Contributors: Automattic, johnbillion, garhdez, djpaul
33
Tags: media, social media, twitter, youtube, media explorer
4+
Requires at least: 6.4
5+
Tested up to: 6.9
6+
Requires PHP: 7.4
47
Stable tag: 1.2
8+
License: GPLv2 or later
9+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
510

611
Insert social media content into your posts.
712

0 commit comments

Comments
 (0)