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 67
67
68
68
# Install dependencies and handle caching in one go.
69
69
# @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 }}
71
72
uses : " ramsey/composer-install@v1"
72
73
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
+
73
81
# Note: The code style check is run multiple times against every PHP version
74
82
# as it also acts as an integration test.
75
83
- name : ' PHPCS: set the path to PHP'
You can’t perform that action at this time.
0 commit comments