-
Notifications
You must be signed in to change notification settings - Fork 7
64 lines (50 loc) · 1.47 KB
/
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
61
62
63
64
name: Tests
on:
pull_request:
jobs:
unit-test:
name: "Unit tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: composer:v2
- name: "Install composer dependencies"
run: composer install --prefer-dist --no-progress
- name: "Run unit tests"
run: composer test:unit
wp-test:
name: "WordPress tests with PHP ${{ matrix.php_version }}"
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php_version: "8.1"
- php_version: "8.2"
services:
mysql:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
steps:
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
tools: composer:v2
- name: "Install composer dependencies"
run: composer install --prefer-dist --no-progress
- name: "Install WP"
shell: bash
run: ./config/scripts/install-wp-tests.sh wordpress_test root '' 127.0.0.1:3306
- name: "Run WordPress tests"
run: composer test:wordPress