1
- # https://help .github.com/en/categories/automating-your- workflow-with -github-actions
2
- # https://github.com/sebastianbergmann/phpunit/blob/master /.github/workflows/ci.yml
1
+ # https://docs .github.com/en/actions/using-workflows/ workflow-syntax-for -github-actions
2
+ # https://github.com/sebastianbergmann/phpunit/blob/main /.github/workflows/ci.yaml
3
3
4
4
name : " Continuous Integration"
5
5
11
11
branches :
12
12
- main
13
13
14
+ env :
15
+ PHP_EXTENSIONS : ast, curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
16
+ PHP_INI_VALUES : memory_limit=-1, error_reporting=-1, display_errors=On
17
+
18
+
14
19
jobs :
15
20
16
21
static-code-analysis :
37
42
uses : shivammathur/setup-php@v2
38
43
with :
39
44
php-version : ${{ matrix.php-version }}
45
+ extensions : ${{ env.PHP_EXTENSIONS }}
46
+ ini-values : ${{ env.PHP_INI_VALUES }}
40
47
tools : pecl
41
48
coverage : none
42
- extensions : ast, curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
43
49
44
50
- name : " Update dependencies with composer"
45
51
uses : ramsey/composer-install@v3
72
78
uses : shivammathur/setup-php@v2
73
79
with :
74
80
php-version : ${{ matrix.php-version }}
81
+ extensions : ${{ env.PHP_EXTENSIONS }}
82
+ ini-values : ${{ env.PHP_INI_VALUES }}
75
83
coverage : pcov
76
- extensions : curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
77
84
78
85
- name : " Install dependencies with composer"
79
86
uses : ramsey/composer-install@v3
@@ -106,10 +113,11 @@ jobs:
106
113
- name : " Install PHP"
107
114
uses : shivammathur/setup-php@v2
108
115
with :
109
- php-version : " 8.1"
116
+ php-version : " 8.3"
117
+ extensions : ${{ env.PHP_EXTENSIONS }}
118
+ ini-values : ${{ env.PHP_INI_VALUES }}
110
119
coverage : none
111
120
tools : phpDocumentor
112
- extensions : curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib
113
121
114
122
- name : " Build API docs"
115
123
run : phpdoc --config=phpdoc.xml.dist
@@ -131,18 +139,9 @@ jobs:
131
139
- name : " Checkout sources"
132
140
uses : actions/checkout@v4
133
141
134
- - name : " Install PHP"
135
- uses : shivammathur/setup-php@v2
136
- with :
137
- php-version : " 8.1"
138
- coverage : none
139
-
140
142
- name : " Install Sphinx"
141
143
run : pip install sphinx myst-parser sphinx-rtd-theme
142
144
143
- - name : " Install dependencies with composer"
144
- uses : ramsey/composer-install@v3
145
-
146
145
- name : " Build manual"
147
146
run : |
148
147
cd docs
0 commit comments