-
Notifications
You must be signed in to change notification settings - Fork 244
114 lines (109 loc) · 3.56 KB
/
phpunit.yml
File metadata and controls
114 lines (109 loc) · 3.56 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: PHPUnit
permissions:
contents: read
on:
push:
paths-ignore:
- '**.md'
- '**.txt'
- '.github/config.json'
- 'bin/**'
- '.gitignore'
- 'docs/**'
branches:
- 'main'
- '3.*'
pull_request:
paths-ignore:
- '**.md'
- '**.txt'
- '.github/config.json'
- 'bin/**'
- '.gitignore'
- 'docs/**'
merge_group:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
file-diff:
runs-on: ubuntu-latest
name: File Diff
if: startsWith( github.repository, 'elementor/' )
outputs:
php_diff: ${{ steps.php_diff_files.outputs.diff }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Check PHP files diff
id: php_diff_files
uses: technote-space/get-diff-action@v6
with:
PATTERNS: |
**/*.php
**/*.twig
composer.+(json|lock)
.github/**/*.yml
install-wp-tests.sh
test:
runs-on: ubuntu-22.04
needs: [ 'file-diff' ]
if: ${{ github.event.pull_request.title == null || needs.file-diff.outputs.php_diff }}
strategy:
fail-fast: false
matrix:
wordpress_versions: ['nightly', 'latest', '6.6', '6.5']
php_versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
name: PHPUnit - WordPress ${{ matrix.wordpress_versions }} - PHP version ${{ matrix.php_versions }}
env:
WP_TESTS_DIR: /tmp/wordpress-tests-lib
WP_TESTS_ELEMENTOR_DIR: /tmp/elementor/elementor.php
WP_TESTS_HELLOPLUS_DIR: /tmp/hello-plus/hello-plus.php
THEME_FILE: functions.php
COVERAGE: ${{ matrix.php_versions >= 8.3 && matrix.wordpress_versions == 'latest' && github.event_name == 'push' }}
services:
mysql:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
coverage: none
- name: Install Dependencies
run: |
bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1:${{ job.services.mysql.ports['3306'] }} ${{ matrix.wordpress_versions }} true
composer update --no-interaction
- name: Copy theme folder to /tmp/wordpress/wp-content/themes/
run: |
cp -a $GITHUB_WORKSPACE /tmp/wordpress/wp-content/themes/
echo "Copied theme folder to /tmp/wordpress/wp-content/themes/$(basename $GITHUB_WORKSPACE)"
- name: Run Tests with Coverage (latest PHP & WP)
if: ${{ env.COVERAGE != 'false' }}
run: |
composer run coverage
- name: Run Tests without Coverage
if: ${{ env.COVERAGE == 'false' }}
run: |
composer run test
test-result:
needs: test
if: ${{ always() }} # Will be run even if 'test' matrix will be skipped
runs-on: ubuntu-22.04
name: PHPUnit - Test Results
steps:
- name: Test status
run: echo "Test status is - ${{ needs.test.result }}"
- name: Check test matrix status
if: ${{ needs.test.result != 'success' && needs.test.result != 'skipped' }}
run: exit 1