Skip to content

Commit

Permalink
get some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
croyfish committed Nov 12, 2024
1 parent d1e2403 commit 8faf005
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ jobs:
sudo apt-get update
sudo apt-get install -y postgresql-client mysql-client
until pg_isready -h localhost -U postgres; do echo "Waiting for PostgreSQL..."; sleep 1; done
until mysqladmin ping --silent; do echo "Waiting for MySQL..."; sleep 1; done
#until mysqladmin ping --silent; do echo "Waiting for MySQL..."; sleep 1; done
- name: Show Database Logs
run: |
echo "MySQL logs:"
docker logs $(docker ps -qf "ancestor=mysql:5.6")
- name: Set up Databases
run: |
Expand Down

0 comments on commit 8faf005

Please sign in to comment.