-
Notifications
You must be signed in to change notification settings - Fork 5
154 lines (143 loc) · 5.3 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
name: PHP Checks
on: [push, pull_request]
jobs:
php-lint:
name: "PHP Lint"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
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 test: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: "Determine composer cache directory"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
-
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 install --no-interaction --no-progress --no-suggest"
-
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-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
needs: php-lint
steps:
- uses: actions/checkout@master
with:
ref: ${{ github.ref }}
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: 8.1
- run: "composer install --no-interaction --no-progress --no-suggest"
# - run: composer require friendsofphp/php-cs-fixer:3.35.1
- run: .Build/bin/php-cs-fixer fix --diff --dry-run
php-unit:
name: "PHP Unit"
runs-on: "ubuntu-latest"
needs: ["php-lint", "php-cs-fixer"]
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: "Determine composer cache directory"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
-
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"