We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37fc30d + c05f7cc commit 71a1cb7Copy full SHA for 71a1cb7
.github/workflows/ci.yml
@@ -85,6 +85,14 @@ jobs:
85
- name: Checkout
86
uses: actions/checkout@master
87
88
+ - name: "Cache dependencies installed with composer"
89
+ uses: actions/cache@v1
90
+ with:
91
+ path: ~/.composer/cache
92
+ key: ${{ matrix.php-binary }}-composer-${{ matrix.dependencies }}-${{ github.sha }}
93
+ restore-keys: |
94
+ ${{ matrix.php-binary }}-composer-${{ matrix.dependencies }}-
95
+
96
- name: Install lowest dependencies with composer
97
if: matrix.dependencies == 'lowest'
98
run: ${{ matrix.php-binary }} ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
0 commit comments