-
Notifications
You must be signed in to change notification settings - Fork 8
167 lines (156 loc) · 5.37 KB
/
php.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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: PHP Checks
on: [push, pull_request]
env:
PHP_EXTENSIONS: "intl, mbstring, json, zip, curl"
jobs:
php-lint:
name: "PHP Lint"
runs-on: ubuntu-20.04
strategy:
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
steps:
-
name: "Checkout"
uses: "actions/checkout@v2"
-
name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
coverage: none
tools: composer:v2
-
name: "Run PHP lint"
run: "composer tests:phplint"
php-compatibility:
name: "PHPCompatibility"
runs-on: ubuntu-20.04
needs: php-lint
steps:
-
name: "Checkout"
uses: actions/checkout@v2
-
name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
coverage: none
tools: composer:v2
-
name: Prepare TYPO3
uses: ./.github/actions/t3prepare
with:
php-version: ${{ matrix.php-version }}
-
name: "Run PHP CS with PHPCompatibility rule"
run: "composer test:phpcompat ${{ matrix.php-version }}"
strategy:
fail-fast: false
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
php-qs:
name: "PHP QS"
runs-on: ubuntu-20.04
needs: php-lint
strategy:
matrix:
command:
- "test:phpcs"
# - "test:phpmd"
# - "test:phpstan"
php-version:
- "8.1"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ env.PHP_EXTENSIONS }}"
-
name: Prepare TYPO3
uses: ./.github/actions/t3prepare
with:
php-version: ${{ matrix.php-version }}
-
name: "Run command"
run: "composer ${{ matrix.command }}"
# - run: composer require friendsofphp/php-cs-fixer
# - run: .Build/bin/php-cs-fixer fix --diff --dry-run
php-unit:
name: "PHP Unit"
runs-on: "ubuntu-20.04"
needs: ["php-lint", "php-qs"]
strategy:
fail-fast: false
matrix:
include:
-
typo3-version: "typo3/minimal:^9.5"
php-version: "7.2"
-
typo3-version: "typo3/minimal:^9.5"
php-version: "7.3"
-
typo3-version: "typo3/minimal:^9.5"
php-version: "7.4"
-
typo3-version: "typo3/minimal:^10.4"
php-version: "7.2"
-
typo3-version: "typo3/minimal:^10.4"
php-version: "7.3"
-
typo3-version: "typo3/minimal:^10.4"
php-version: "7.4"
steps:
-
name: "Checkout"
uses: "actions/checkout@v2"
-
name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ env.PHP_EXTENSIONS }}"
# -
# name: "Validate composer.json and composer.lock"
# run: "composer validate --strict"
-
name: "Show Composer version"
run: composer --version
-
name: "Determine composer cache directory"
id: "determine-composer-cache-directory"
run: echo "directory={$(composer config cache-dir)}" >> $GITHUB_OUTPUT
-
name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.0.0"
with:
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.lock') }}"
restore-keys: "php-${{ matrix.php-version }}-composer-"
-
name: "Install composer dependencies"
run: |
composer remove --no-update typo3/cms typo3/cms-core
composer require "${{ matrix.typo3-version }}"
-
name: "Run PHP unit tests"
run: "composer test:phpunit"