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 c95b57b commit 30b9c76Copy full SHA for 30b9c76
.github/workflows/tests.yml
@@ -26,6 +26,21 @@ jobs:
26
submodules: recursive
27
ref: ${{ github.head_ref || github.ref_name }}
28
29
+ - name: Cache Composer dependencies
30
+ uses: actions/cache@v4
31
+ with:
32
+ path: ${{ steps.composer-cache.outputs.dir }}
33
+ key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
34
+ restore-keys: |
35
+ ${{ runner.os }}-composer-
36
+
37
+ - name: Install dependencies
38
+ uses: php-actions/composer@v6
39
+ env:
40
+ COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ github.token }}"} }'
41
42
+ php_version: '8.4'
43
44
- name: Create Docs Markdown
45
uses: phpDocumentor/[email protected]
46
with:
0 commit comments