Workflow - Verify MySQL Connection

This commit is contained in:
Refringe 2024-06-18 15:55:25 -04:00
parent 9b304df564
commit b0b04f0af7
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -118,6 +118,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Verify MySQL Connection
run: |
mysql --version
sudo apt-get install -y mysql-client
mysql --host 127.0.0.1 --port 33306 -uuser -ppassword -e "SHOW DATABASES"
- name: Setup PHP
uses: shivammathur/setup-php@v2
with: