Workflow: Test MySQL Connection Step

This commit is contained in:
Refringe 2024-09-11 16:37:08 -04:00
parent df01366697
commit 1c25b3edde
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -18,6 +18,11 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Verify MySQL connection
run: |
mysql --version
mysql --host mysql --port 33306 -uuser -ppassword -e "SHOW DATABASES"
- name: Checkout
uses: actions/checkout@v4