Workflow: Install MySQL Client

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

View File

@ -20,8 +20,9 @@ jobs:
steps: steps:
- name: Verify MySQL connection - name: Verify MySQL connection
run: | run: |
sudo apt-get install -y mysql-client
mysql --version mysql --version
mysql --host mysql --port 33306 -uuser -ppassword -e "SHOW DATABASES" mysql --host 127.0.0.1 --port 3306 -uuser -ppassword -e "SHOW DATABASES"
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4