There was an error while loading. Please reload this page.
1 parent 837b27b commit fcef786Copy full SHA for fcef786
.github/workflows/continuous-integration.yml
@@ -33,14 +33,23 @@ jobs:
33
coverage: "pcov"
34
php-version: "${{ matrix.php-version }}"
35
36
+ - name: "Cache the php documentation"
37
+ id: cache-php-doc
38
+ uses: "actions/cache@v1"
39
+ with:
40
+ path: "generator/doc/doc-en"
41
+ key: "php-doc"
42
+
43
- name: "Check out salathe/phpdoc-base"
44
uses: "actions/checkout@v2"
45
+ if: steps.cache-php-doc.outputs.cache-hit != 'true'
46
with:
47
path: "generator/doc/doc-en/doc-base"
48
repository: "salathe/phpdoc-base"
49
50
- name: "Check out php/doc-en"
51
52
53
54
path: "generator/doc/doc-en/en"
55
repository: "php/doc-en"
0 commit comments