-
Notifications
You must be signed in to change notification settings - Fork 132
60 lines (48 loc) · 1.58 KB
/
php-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: PHP Tests
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
# Alias 'master' to 'latest'
name: WP ${{ matrix.wp == 'master' && 'latest' || matrix.wp }} and PHP ${{ matrix.php }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allowed_failure }}
strategy:
fail-fast: false
matrix:
include:
# Check lowest supported WP version, with the lowest supported PHP.
- php: '8.0'
wp: '6.0'
allowed_failure: false
# Check latest WP with the highest supported PHP.
- php: 'latest'
wp: 'master'
allowed_failure: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install wordpress environment
run: npm -g install @wordpress/env
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
with:
composer-options: --prefer-dist --no-progress
- name: Setup wp-env
run: wp-env start
env:
WP_ENV_CORE: WordPress/WordPress#${{ matrix.wp }}
# Commented out until we finish linting all the files
# - name: Run PHPCS diff tests
# run: bash bin/phpcs-diff.sh
- name: Run PHPUnit tests (single site)
run: composer integration
- name: Run PHPUnit tests (multisite)
run: composer integration-ms