We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b78594 commit b940f93Copy full SHA for b940f93
.github/workflows/php-package.yml
@@ -38,6 +38,14 @@ jobs:
38
php-version: ${{ matrix.php-version }}
39
tools: composer:v2
40
coverage: xdebug3
41
+ - name: Composer Cache
42
+ id: composer-cache
43
+ run: |
44
+ echo "cache_directory=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
45
+ - uses: actions/cache@v4
46
+ with:
47
+ path: ${{ steps.composer-cache.outputs.cache_directory }}
48
+ key: ${{ runner.os }}-composer
49
- run: composer install
50
shell: bash
51
- run: composer test
0 commit comments