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 22c1c46 commit 3dd61e7
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 @@ -161,7 +161,7 @@ jobs:
MYSQL_PASSWORD: ${{ env.DB_PASSWORD }}
MYSQL_ROOT_PASSWORD: root
ports:
- 13306
- 13306:13306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10
postgres:
image: ${{ matrix.driver == 'pgsql' && matrix.service || '' }}
Expand Down Expand Up @@ -205,6 +205,7 @@ jobs:
run: |
sudo systemctl start mysql
mysql -uroot -proot -e 'CREATE DATABASE flarum_test;' --port 13306
mysql -uroot -proot -e 'GRANT ALL PRIVILEGES ON flarum_test.* TO "${{ env.DB_USERNAME }}"@"%" IDENTIFIED BY "${{ env.DB_PASSWORD }}";' --port 13306
- name: Install Composer dependencies
run: composer install
Expand Down

0 comments on commit 3dd61e7

Please sign in to comment.