Skip to content

Commit 9f3f33e

Browse files
committed
Run the tests on 8.1-8.4.
1 parent 85344a1 commit 9f3f33e

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

.github/workflows/import-test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@ jobs:
1010
test-import:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 10
13-
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
php:
17+
- '8.1'
18+
- '8.2'
19+
- '8.3'
20+
- '8.4'
21+
1422
env:
15-
WP_ENV_PHP_VERSION: '8.2'
23+
WP_ENV_PHP_VERSION: ${{ matrix.php }}
1624

1725
steps:
1826
- name: Checkout

.github/workflows/unit-test.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,21 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
test-php:
11-
runs-on: ubuntu-latest
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
php:
16-
- '8.1'
17-
- '8.2'
18-
- '8.3'
19-
20-
env:
21-
WP_ENV_PHP_VERSION: ${{ matrix.php }}
22-
23-
steps:
10+
test-php:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
php:
16+
- '8.1'
17+
- '8.2'
18+
- '8.3'
19+
- '8.4'
20+
21+
env:
22+
WP_ENV_PHP_VERSION: ${{ matrix.php }}
23+
24+
steps:
2425
- name: Checkout
2526
uses: actions/checkout@v4
2627

0 commit comments

Comments
 (0)