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 a0b9f55 commit 0f62c25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/REUSABLE_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@ jobs:

- name: mysql version 1
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION"
run: |
mysql --version
mysql --port 3306 -uroot -ppassword -e "SELECT @@VERSION"
- name: Create ${{ matrix.db }} Database
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
Expand All @@ -208,7 +210,7 @@ jobs:
- name: mysql version 2
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION"
run: mysql --port 3306 -uroot -ppassword -e "SELECT @@VERSION"

- name: Install Composer dependencies
run: composer install
Expand Down

0 comments on commit 0f62c25

Please sign in to comment.