Skip to content

Commit

Permalink
Merge branch '4.x/ghactions-fix-run-on-nightly' of https://github.com…
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Mar 7, 2021
2 parents 76b5801 + 8bf3731 commit c7602a7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,17 @@ jobs:

# Install dependencies and handle caching in one go.
# @link https://github.com/marketplace/actions/install-composer-dependencies
- name: Install Composer dependencies
- name: Install Composer dependencies - normal
if: ${{ matrix.experimental == false }}
uses: "ramsey/composer-install@v1"

# For PHP nightly, install with ignore platform reqs as not all PHPUnit allow for it yet.
- name: Install Composer dependencies - with ignore platform
if: ${{ matrix.experimental == true }}
uses: "ramsey/composer-install@v1"
with:
composer-options: --ignore-platform-reqs

# Note: The code style check is run multiple times against every PHP version
# as it also acts as an integration test.
- name: 'PHPCS: set the path to PHP'
Expand Down

0 comments on commit c7602a7

Please sign in to comment.