-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (40 loc) · 1.35 KB
/
main.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
name: Continuous Integration
on: push
jobs:
code-quality:
name: Run code quality checks on PHP 7.4
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Install dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
- name: Run code quality checks
run: vendor/bin/grumphp run --testsuite=code_quality
php-unit-tests:
name: Run unit tests on PHP ${{ matrix.php-versions }}
runs-on: ubuntu-latest
needs: code-quality
strategy:
fail-fast: false
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Remove GrumPHP
run: composer remove --dev phpro/grumphp
- name: Install dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
- name: Install WordPress
run: .github/workflows/install-wp.sh
- name: Run unit tests
run: vendor/bin/phpunit