-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (84 loc) · 2.33 KB
/
ci.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: GitHub CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
paths-ignore:
- 'README.md'
- '.gitignore'
- '.gitattributes'
permissions:
contents: read
jobs:
coding-standards:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: "Check composer validate"
run: composer validate --strict --ansi
- name: "Install dependencies (Composer)"
uses: ramsey/composer-install@v2
with:
composer-options: --prefer-dist --optimize-autoloader --ansi
- name: "Check composer normalize (composer-normalize)"
run: composer normalize --dry-run --diff --ansi
- name: "Check coding standards (PHP-CS-Fixer)"
run: composer csfixer -- --ansi
static-analysis:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2, 8.3]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- uses: ramsey/composer-install@v2
with:
composer-options: --prefer-dist --optimize-autoloader --ansi
- name: "Statically analyze code (PHPStan)"
run: composer phpstan -- --ansi
rector:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- uses: ramsey/composer-install@v2
with:
composer-options: --prefer-dist --optimize-autoloader --ansi
- run: composer rector -- --ansi
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2, 8.3]
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- uses: ramsey/composer-install@v2
with:
composer-options: --prefer-dist --optimize-autoloader --ansi
- run: composer test