mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:56:12 +01:00
[TASK] Use the development PHP INI on CI (#1207)
This allows us to see (and fail on) more PHP warnings and notices. Fixes #1197
This commit is contained in:
parent
186bd32caf
commit
444b39af08
2 changed files with 5 additions and 0 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -22,6 +22,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
|
ini-file: development
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
- name: "Show the Composer configuration"
|
- name: "Show the Composer configuration"
|
||||||
|
@ -47,6 +48,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
|
ini-file: development
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
- name: "Show Composer version"
|
- name: "Show Composer version"
|
||||||
|
@ -105,6 +107,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
|
ini-file: development
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
- name: "Show Composer version"
|
- name: "Show Composer version"
|
||||||
|
@ -203,6 +206,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
|
ini-file: development
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
extensions: mysqli
|
extensions: mysqli
|
||||||
coverage: none
|
coverage: none
|
||||||
|
|
1
.github/workflows/codecoverage.yml
vendored
1
.github/workflows/codecoverage.yml
vendored
|
@ -26,6 +26,7 @@ jobs:
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: "${{ matrix.php-version }}"
|
php-version: "${{ matrix.php-version }}"
|
||||||
|
ini-file: development
|
||||||
tools: composer:v2, phive
|
tools: composer:v2, phive
|
||||||
extensions: mysqli
|
extensions: mysqli
|
||||||
coverage: pcov
|
coverage: pcov
|
||||||
|
|
Loading…
Reference in a new issue