Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Nov 30, 2024
1 parent 710aa0d commit 4aae593
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/REUSABLE_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ jobs:
MYSQL_ROOT_PASSWORD: ${{ env.DB_PASSWORD }}
ports:
- 13306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10
postgres:
image: ${{ matrix.driver == 'pgsql' && matrix.service || '' }}
env:
Expand Down Expand Up @@ -196,7 +197,7 @@ jobs:

- name: mysql version 1
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 13306 -uroot -ppassword -e "SELECT @@VERSION"
run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION"

- name: Create ${{ matrix.db }} Database
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
Expand Down

0 comments on commit 4aae593

Please sign in to comment.