Skip to content

Commit 01e5107

Browse files
committed
wip
1 parent cb53fbf commit 01e5107

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
# php: [ '7.4', '8.0', '8.1', '8.2' ]
14+
# php: [ '7.4', '8.0', '8.1', '8.2' ]
1515
php: [ '8.2', '8.3', '8.4' ]
1616
wordpress: [ '5.9', '6.0', '6.3', '6.7', '6.8' ]
1717
exclude:
@@ -41,6 +41,14 @@ jobs:
4141
WP_DB_HOST: 127.0.0.1
4242

4343
steps:
44+
- name: Check MySQL tables
45+
run: |
46+
echo "Listing databases:"
47+
mysql -h 127.0.0.1 -uroot -proot -e "SHOW DATABASES;"
48+
49+
echo "Checking if 'wordpress' database has any tables:"
50+
mysql -h 127.0.0.1 -uroot -proot -D wordpress -e "SHOW TABLES;" || echo "No tables found (yet)."
51+
4452
- name: Checkout plugin
4553
uses: actions/checkout@v4
4654

0 commit comments

Comments
 (0)