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 2681f69 commit 7c29004Copy full SHA for 7c29004
1 file changed
.github/workflows/phpunit.yml
@@ -105,6 +105,16 @@ jobs:
105
- name: Symlink plugin into WordPress installation
106
run: ln -s "$GITHUB_WORKSPACE" /tmp/wordpress/wp-content/plugins/progress-planner
107
108
+ - name: Create wp-config.php for WP-CLI tests
109
+ run: |
110
+ wp config create \
111
+ --path=/tmp/wordpress \
112
+ --dbname=wordpress_tests \
113
+ --dbuser=root \
114
+ --dbpass='' \
115
+ --dbhost=127.0.0.1:3306 \
116
+ --skip-check
117
+
118
- name: Run unit tests - single site
119
run: composer test
120
0 commit comments