-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (64 loc) · 2.25 KB
/
php.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
name: 'Unit Tests & Static Analysis'
on:
push:
branches: [ release-2.x, release-3.x ]
pull_request:
branches: [ release-2.x, release-3.x ]
jobs:
unit-testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: xdebug
ini-values: zend.assertions=1
tools: composer:2
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Composer (Annotated Container)
run: composer install
- name: Composer (Testing Tools)
run: cd tools/phpunit && composer install
- name: Unit Testing
env:
XDEBUG_MODE: coverage
run: ./tools/phpunit/vendor/bin/phpunit
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:2
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Composer (Annotated Container)
run: composer install
- name: Composer (Static Analysis Tools)
run: cd tools/psalm && composer install
- name: Static Analysis
run: ./tools/psalm/vendor/bin/psalm --output-format=github
code-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:2, cs2pr, phpcs
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Composer (Annotated Container)
run: composer install
- name: Composer (Static Analysis Tools)
run: cd tools/labrador-cs && composer install
- name: Code Linting
run: phpcs -q --standard=./tools/labrador-cs/vendor/cspray/labrador-coding-standard/ruleset.xml --exclude=Generic.Files.LineLength --report=checkstyle src test | cs2pr