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.
1 parent ddd7fbf commit ab47c9dCopy full SHA for ab47c9d
.github/workflows/ci.yml
@@ -30,6 +30,22 @@ jobs:
30
tools: composer:v2
31
coverage: none
32
33
+ - name: Show the Composer configuration
34
+ run: composer config --global --list
35
+
36
+ - name: Cache dependencies installed with composer
37
+ uses: actions/cache@v4
38
+ with:
39
+ path: ~/.cache/composer
40
+ key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}
41
+ restore-keys: |
42
+ php${{ matrix.php-version }}-composer-
43
44
+ - name: Install Composer dependencies
45
+ run: |
46
+ composer update --with-dependencies --no-progress;
47
+ composer show;
48
49
- name: PHP Lint
50
run: composer ci:php:lint
51
0 commit comments