Skip to content

Commit 896fee1

Browse files
committed
More formatting for readability.
1 parent 1143dca commit 896fee1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/install-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
with:
114114
php-version: '${{ matrix.php }}'
115115
coverage: none
116-
tools: wp-cli${{ contains( fromJSON('["5.4", "5.5"]'), matrix.php ) && ':2.4.0' || '' }}
116+
tools: ${{ contains( fromJSON('["5.4", "5.5"]'), matrix.php ) && 'wp-cli:2.4.0' || 'wp-cli' }}
117117

118118
- name: Download WordPress
119119
run: wp core download ${{ inputs.wp-version && format( '--version="{0}"', inputs.wp-version ) || '--version=nightly' }}

.github/workflows/reusable-upgrade-testing.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ jobs:
8686
DB_PORT: ${{ job.services.database.ports['3306'] }}
8787

8888
- name: Install WordPress
89-
run: wp core ${{ inputs.multisite && 'multisite-install' || 'install' }} --url=http://localhost/ --title="Upgrade Test" --admin_user=admin --admin_password=password [email protected] --skip-email
89+
run: |
90+
wp core ${{ inputs.multisite && 'multisite-install' || 'install' }} \
91+
--url=http://localhost/ --title="Upgrade Test" --admin_user=admin \
92+
--admin_password=password [email protected] --skip-email
9093
9194
- name: Update to the latest minor version
9295
run: wp core update --minor

0 commit comments

Comments
 (0)