-
Notifications
You must be signed in to change notification settings - Fork 13
59 lines (47 loc) · 1.46 KB
/
qa.yaml
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
name: Quality assurance
on:
push:
pull_request:
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: 7.1
coverage: none
tools: composer:v2
- name: Install variant
run: |
composer require phpstan/phpstan:"0.11.*" --no-update
composer require phpstan/phpstan-phpunit:"0.11.*" --no-update
- name: Install Composer dependencies (highest)
uses: 'ramsey/composer-install@v1'
with:
dependency-versions: 'highest'
composer-options: '--prefer-dist --prefer-stable'
- name: Run PHPStan
run: vendor/bin/phpstan --memory-limit=1G analyse
php-cs-fixer:
name: PHP CS Fixer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: 7.1
coverage: none
tools: composer:v2, cs2pr, php-cs-fixer
- name: Install Composer dependencies (highest)
uses: 'ramsey/composer-install@v1'
with:
dependency-versions: 'highest'
composer-options: '--prefer-dist --prefer-stable'
- name: Run PHP-CS-Fixer
run: php-cs-fixer fix --dry-run --format checkstyle | cs2pr