File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 6767
6868 # Install dependencies and handle caching in one go.
6969 # @link https://github.com/marketplace/actions/install-composer-dependencies
70- - name : Install Composer dependencies
70+ - name : Install Composer dependencies - normal
71+ if : ${{ matrix.experimental == false }}
7172 uses : " ramsey/composer-install@v1"
7273
74+ # For PHP nightly, install with ignore platform reqs as not all PHPUnit allow for it yet.
75+ - name : Install Composer dependencies - with ignore platform
76+ if : ${{ matrix.experimental == true }}
77+ uses : " ramsey/composer-install@v1"
78+ with :
79+ composer-options : --ignore-platform-reqs
80+
7381 # Note: The code style check is run multiple times against every PHP version
7482 # as it also acts as an integration test.
7583 - name : ' PHPCS: set the path to PHP'
You can’t perform that action at this time.
0 commit comments