use different caches for composer
This commit is contained in:
parent
380495e1b6
commit
bd037022bc
3 changed files with 7 additions and 7 deletions
|
@ -31,7 +31,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
./vendor/
|
./vendor/
|
||||||
key: cache-composer-4
|
key: cache-composer-phpcs-1
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: https://github.com/shivammathur/setup-php@v2
|
uses: https://github.com/shivammathur/setup-php@v2
|
||||||
|
|
|
@ -38,12 +38,12 @@ jobs:
|
||||||
key: cache-wordpress-1
|
key: cache-wordpress-1
|
||||||
|
|
||||||
- name: Cache Composer
|
- name: Cache Composer
|
||||||
id: cache-composer
|
id: cache-composer-phpunit
|
||||||
uses: https://code.forgejo.org/actions/cache@v4
|
uses: https://code.forgejo.org/actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
./vendor/
|
./vendor/
|
||||||
key: cache-composer-4
|
key: cache-composer-phpunit-1
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: https://github.com/shivammathur/setup-php@v2
|
uses: https://github.com/shivammathur/setup-php@v2
|
||||||
|
@ -54,9 +54,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
runner: self-hosted
|
runner: self-hosted
|
||||||
|
|
||||||
- name: Install composer dependencies for PHP
|
- name: Install PHP Unit
|
||||||
if: steps.cache-composer.outputs.cache-hit != 'true'
|
if: steps.cache-composer-phpunit.outputs.cache-hit != 'true'
|
||||||
uses: ramsey/composer-install@v3
|
# Polyfills requires all needed packages including phpunit itself.
|
||||||
|
uses: composer install --dev yoast/phpunit-polyfills:"^3.0"
|
||||||
|
|
||||||
- name: Install and cache mysqladmin needed to initialize the test database
|
- name: Install and cache mysqladmin needed to initialize the test database
|
||||||
uses: https://github.com/awalsh128/cache-apt-pkgs-action@latest
|
uses: https://github.com/awalsh128/cache-apt-pkgs-action@latest
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"wp-coding-standards/wpcs": "dev-develop",
|
"wp-coding-standards/wpcs": "dev-develop",
|
||||||
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
|
||||||
"sirbrillig/phpcs-variable-analysis": "^2.11",
|
"sirbrillig/phpcs-variable-analysis": "^2.11",
|
||||||
"yoast/phpunit-polyfills": "^3.0"
|
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"allow-plugins": true
|
"allow-plugins": true
|
||||||
|
|
Loading…
Reference in a new issue