-
Notifications
You must be signed in to change notification settings - Fork 206
68 lines (54 loc) · 1.84 KB
/
integrate.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
61
62
63
64
65
66
67
68
name: Integration Tests
on: [push]
jobs:
test:
name: WP ${{ matrix.wordpress }} on PHP ${{ matrix.php }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allowed_failure }}
env:
WP_VERSION: ${{ matrix.wordpress }}
strategy:
matrix:
wordpress: [ '5.9', '6.5' ]
php: [ '7.4', 'latest' ]
allowed_failure: [ false ]
include:
# Check upcoming WP.
- php: 'latest'
wordpress: 'trunk'
allowed_failure: true
# Check upcoming PHP.
- php: '8.4'
wordpress: 'latest'
allowed_failure: true
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: ${{ matrix.ini-values }}
coverage: ${{ matrix.coverage }}
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
with:
composer-options: --ignore-platform-req=php+
- name: Set up problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Show PHP and PHPUnit version info
run: |
php --version
./vendor/bin/phpunit --version
- name: Start MySQL service
run: sudo systemctl start mysql.service
- name: Install WordPress environment
run: composer prepare ${{ matrix.wordpress }}
- name: Run integration tests (single site)
run: composer integration
- name: Run integration tests (multisite)
run: composer integration-ms