Skip to content

Commit ca8f456

Browse files
committed
Add --ignore-platform-reqs
1 parent f234c32 commit ca8f456

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/coding-conventions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Install dependencies
2121
run: |
22-
composer update --prefer-dist --no-interaction
22+
composer update --prefer-dist --no-interaction --ignore-platform-reqs
2323
composer mago:install-binary
2424
2525
- name: Run Mago

.github/workflows/integration-tests-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
8585
8686
- name: Install dependencies
87-
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
87+
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ignore-platform-reqs
8888

8989
- name: "Setup Redis"
9090
if: ${{ matrix.os != 'windows-latest' }}

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
9191
9292
- name: Install dependencies
93-
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
93+
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ignore-platform-reqs
9494

9595
- name: "Setup Redis"
9696
if: ${{ matrix.os != 'windows-latest' }}

.github/workflows/isolated-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: |
7878
./bin/build-changed-packages
7979
cd "packages/${{ matrix.package.basename }}"
80-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
80+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ignore-platform-reqs
8181
8282
- name: Execute tests
8383
run: phpunit -c "packages/${{ matrix.package.basename }}/phpunit.xml"

0 commit comments

Comments
 (0)