-
Notifications
You must be signed in to change notification settings - Fork 7
78 lines (67 loc) · 2.04 KB
/
continous-integration.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
name: continuous_integration
on:
workflow_dispatch:
schedule:
- cron: "0 4 1 * *"
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
continuous_integration:
runs-on: ubuntu-latest
strategy:
matrix:
php: ["8.1", "8.2", "8.3"]
fail-fast: false
name: Make sure that the WPGraphQLTestCase works!!!
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, mbstring
- name: Install WP PHPUnit Dependencies
run: |
composer install
composer require wp-phpunit/wp-phpunit \
yoast/phpunit-polyfills \
phpunit/phpunit:^9.6 \
wp-phpunit/wp-phpunit \
- name: Run PHPUnit Tests w/ Docker.
env:
PHP_VERSION: ${{ matrix.php }}
run: composer run-phpunit -- -- --coverage-text
- name: Install WPBrowser Dependencies
run: |
composer install
composer require codeception/module-asserts:* \
codeception/util-universalframework:* \
codeception/module-cli:* \
codeception/module-db:* \
codeception/module-filesystem:* \
codeception/module-phpbrowser:* \
codeception/module-webdriver:* \
wp-cli/wp-cli-bundle \
"lucatume/wp-browser:>3.1 <3.5" \
- name: Run Codeception Tests w/ Docker.
env:
PHP_VERSION: ${{ matrix.php }}
run: |
composer run-codeception -- -- functional
composer run-codeception -- -- wpunit --coverage --coverage-xml
- name: Push Codecoverage to Coveralls.io
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
docker compose run --rm \
--user $(id -u) \
-e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN \
codeception_testing \
vendor/bin/php-coveralls -v