mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02:00
Fixed issues with xdebug.max_nesting_level in github actions
This commit is contained in:
parent
0c689d492b
commit
306ecff9c7
3 changed files with 17 additions and 0 deletions
8
.github/workflows/assets_artifact_build.yml
vendored
8
.github/workflows/assets_artifact_build.yml
vendored
|
@ -21,6 +21,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: '8.2'
|
||||||
|
coverage: none
|
||||||
|
ini-values: xdebug.max_nesting_level=1000
|
||||||
|
extensions: mbstring, intl, gd, xsl, gmp, bcmath
|
||||||
|
|
||||||
- name: Get Composer Cache Directory
|
- name: Get Composer Cache Directory
|
||||||
id: composer-cache
|
id: composer-cache
|
||||||
run: |
|
run: |
|
||||||
|
|
8
.github/workflows/static_analysis.yml
vendored
8
.github/workflows/static_analysis.yml
vendored
|
@ -18,6 +18,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: '8.2'
|
||||||
|
coverage: none
|
||||||
|
ini-values: xdebug.max_nesting_level=1000
|
||||||
|
extensions: mbstring, intl, gd, xsl, gmp, bcmath
|
||||||
|
|
||||||
- name: Get Composer Cache Directory
|
- name: Get Composer Cache Directory
|
||||||
id: composer-cache
|
id: composer-cache
|
||||||
run: |
|
run: |
|
||||||
|
|
1
.github/workflows/tests.yml
vendored
1
.github/workflows/tests.yml
vendored
|
@ -45,6 +45,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-versions }}
|
||||||
coverage: pcov
|
coverage: pcov
|
||||||
|
ini-values: xdebug.max_nesting_level=1000
|
||||||
extensions: mbstring, intl, gd, xsl, gmp, bcmath
|
extensions: mbstring, intl, gd, xsl, gmp, bcmath
|
||||||
|
|
||||||
- name: Start MySQL
|
- name: Start MySQL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue