Skip to content

Commit 0b40ed3

Browse files
authored
Merge pull request #67 from greg0ire/dev-file
Use development file
2 parents cf7c368 + 42502ed commit 0b40ed3

File tree

6 files changed

+7
-3
lines changed

6 files changed

+7
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
uses: "shivammathur/setup-php@v2"
3838
with:
3939
coverage: "none"
40+
ini-file: development
4041
php-version: "${{ inputs.php-version }}"
4142
tools: "cs2pr"
4243

.github/workflows/composer-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: "shivammathur/setup-php@v2"
2424
with:
2525
coverage: "none"
26+
ini-file: development
2627
php-version: "${{ inputs.php-version }}"
2728
tools: composer:v2, composer-normalize:2
2829
env:

.github/workflows/continuous-integration-symfony-unstable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
php-version: "${{ inputs.php-version }}"
5050
coverage: "pcov"
51-
ini-values: "zend.assertions=1"
51+
ini-file: development
5252
tools: "flex"
5353

5454
- name: "Set COMPOSER_ROOT_VERSION"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
with:
5151
php-version: "${{ matrix.php-version }}"
5252
coverage: "pcov"
53-
ini-values: "zend.assertions=1"
53+
ini-file: development
5454

5555
- name: "Install PHP with XDebug"
5656
uses: "shivammathur/setup-php@v2"
5757
if: "${{ matrix.php-version == '7.1' }}"
5858
with:
5959
php-version: "${{ matrix.php-version }}"
6060
coverage: "xdebug"
61-
ini-values: "zend.assertions=1"
61+
ini-file: development
6262

6363
- name: "Set COMPOSER_ROOT_VERSION"
6464
run: |

.github/workflows/documentation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
uses: "shivammathur/setup-php@v2"
1818
with:
1919
coverage: "none"
20+
ini-file: development
2021
php-version: "8.3" # Use the same version as in doctrine/doctrine-website
2122
tools: "cs2pr"
2223

.github/workflows/phpstan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
uses: "shivammathur/setup-php@v2"
3838
with:
3939
coverage: "none"
40+
ini-file: development
4041
php-version: "${{ inputs.php-version }}"
4142

4243
- name: "Set COMPOSER_ROOT_VERSION"

0 commit comments

Comments
 (0)