-
Notifications
You must be signed in to change notification settings - Fork 199
129 lines (112 loc) · 4.36 KB
/
php.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: PHP Linting and Tests
on:
pull_request:
workflow_call:
jobs:
lint:
name: PHP Linting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get cached composer directories
uses: actions/cache@v3
with:
path: ~/.cache/composer/
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
- uses: actions/cache@v3
with:
path: vendor/
key: ${{ runner.os }}-vendor-${{ hashFiles('composer.lock') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: composer
coverage: none
- name: Set up branches
run: git checkout -b trunk refs/remotes/origin/trunk && git checkout -
if: github.ref != 'refs/heads/trunk'
- name: Install PHP dependencies
run: composer self-update && composer install --no-ansi --no-interaction --prefer-dist --no-progress
- name: Check for new issues
run: ./scripts/linter-ci
- name: Check for escaping
run: ./vendor/bin/phpcs -s --sniffs=WordPress.WP.I18n,Generic.PHP.Syntax,WordPress.Security.EscapeOutput .
- name: Check for nonces
run: ./vendor/bin/phpcs -sn --sniffs=WordPress.Security.NonceVerification .
- name: Check WPCOM rules
run: ./vendor/bin/phpcs -sn --standard=./wpcom-phpcs.xml .
test:
name: PHP Unit Tests
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.wp == 'nightly' }}
strategy:
fail-fast: true
max-parallel: 10
matrix:
wp: ['latest']
wpmu: [0]
php: ['7.4', '8.2']
include:
- php: 7.4
wp: '6.1'
- php: 7.4
wp: '6.2'
- php: 7.4
wp: latest
wpmu: 1
- php: 7.4
wp: nightly
env:
WP_VERSION: ${{ matrix.wp }}
WP_MULTISITE: ${{ matrix.wpmu }}
PHP_VERSION: ${{ matrix.php }}
services:
database:
image: mysql:5.6
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get cached composer directories
uses: actions/cache@v3
with:
path: ~/.cache/composer/
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
- uses: actions/cache@v3
with:
path: vendor/
key: ${{ runner.os }}-vendor-${{ hashFiles('composer.lock') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mysql
tools: composer
coverage: none
- name: Tool versions
run: |
php --version
composer --version
- name: Install PHP dependencies
run: composer install --no-ansi --no-interaction --prefer-dist --no-progress --ignore-platform-reqs
- name: Setup test environment
run: bash ./tests/bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 $WP_VERSION
- name: Run tests
run: ./vendor/bin/phpunit
- name: Slack Notification on Failure
uses: rtCamp/action-slack-notify@v2
if: ${{ failure() && github.event_name == 'push' }}
env:
SLACK_CHANNEL: ${{ secrets.SLACK_JANITORIAL_CHANNEL }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_TITLE: 'PHP Testing'
SLACK_COLOR: 'error'
SLACK_FOOTER: ''