-
Notifications
You must be signed in to change notification settings - Fork 5
69 lines (54 loc) · 1.76 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
65
66
67
68
69
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.2
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 WP ${{ matrix.wp_version }}"
runs-on: ubuntu-latest
strategy:
matrix:
wp_version: ["6.3", "6.4", "6.5", "6.6", "latest"]
services:
mysql:
image: mysql:9.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: 8.2
tools: composer:v2
- name: "Install composer dependencies"
run: composer install --prefer-dist --no-progress
# WordPress tests works only with PHPUnit 9.x :(
# https://github.com/dimitriBouteille/wp-orm/actions/runs/11192354429/job/31116408495
- name: "Install PHPUnit v9"
run: |
composer require --dev phpunit/phpunit ^9.0 -W
composer require --dev yoast/phpunit-polyfills ^3.0 -W
- name: "Install WP"
shell: bash
run: ./config/scripts/install-wp-tests.sh wordpress_test root '' 127.0.0.1:3306 ${{ matrix.wp_version }}
- name: "Run WordPress tests"
run: composer test:wordPress