Skip to content

Commit

Permalink
Merge branch '7.5' into 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 6, 2019
2 parents 37fc30d + c05f7cc commit 71a1cb7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
with:
path: ~/.composer/cache
key: ${{ matrix.php-binary }}-composer-${{ matrix.dependencies }}-${{ github.sha }}
restore-keys: |
${{ matrix.php-binary }}-composer-${{ matrix.dependencies }}-
- name: Install lowest dependencies with composer
if: matrix.dependencies == 'lowest'
run: ${{ matrix.php-binary }} ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
Expand Down

0 comments on commit 71a1cb7

Please sign in to comment.