-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (88 loc) · 3.07 KB
/
Copy pathmain.yml
File metadata and controls
101 lines (88 loc) · 3.07 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
name: CI Setup
on:
pull_request:
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
run-phpcs:
name: Run PHPCS
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.3", "8.4" ]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup
id: ci-setup
uses: thefrosty/ci-setup@main
with:
extensions: 'curl'
extensions-cache-key: run-phpcs-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, cs2pr, phpcs'
- name: Run PHPCS
continue-on-error: false
id: phpcs
run: composer phpcs
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
PHP_VERSION: ${{ matrix.php-version }}
- name: Show PHPCS results in PR
if: ${{ always() && steps.phpcs.outcome == 'failure' }}
run: cs2pr ./phpcs-report.xml
run-phpunit:
name: Run PHPUnit
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.3" ]
wp-version: [ 'latest' ]
coverage: [ true ]
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: wordpress_test
MYSQL_ROOT_PASSWORD: root
ports:
- "3306:3306"
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
env:
WORDPRESS_DB_NAME: wordpress_test
WORDPRESS_DB_PASS: root
WORDPRESS_DB_USER: root
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install SVN
run: sudo apt-get update && sudo apt-get install -y subversion
- name: Setup PHP ${{ matrix.php-version }}
id: ci-setup
uses: thefrosty/ci-setup@main
with:
extensions: 'curl, mysql, mysqli, zip'
extensions-cache-key: run-phpunit-${{ matrix.wp-version }}-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, phpunit:11'
- name: Setup WordPress ${{ matrix.wp-version }}
run: |
chmod u+x vendor/thefrosty/wp-utilities/bin/install-wp-tests.sh
./vendor/thefrosty/wp-utilities/bin/install-wp-tests.sh ${{ env.WORDPRESS_DB_NAME }} ${{ env.WORDPRESS_DB_USER }} ${{ env.WORDPRESS_DB_PASS }} 127.0.0.1:${{ job.services.mysql.ports['3306'] }} ${{ matrix.wp-version }} true
- name: Run PHPUnit
continue-on-error: false
id: phpunit
run: composer phpunit
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
DB_PORT: ${{ job.services.mysql.ports[3306] }}
- name: Upload coverage to Codecov
if: ${{ github.event_name == 'pull_request' }}
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: false