Skip to content

Commit 8e8d694

Browse files
committed
debug ci/cd
1 parent bc549bb commit 8e8d694

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ jobs:
6565
DB_PORT: 3306
6666
run: bin/cake migrations migrate -c test
6767

68+
- name: Debug MySQL
69+
run: |
70+
mysql -h 127.0.0.1 -uroot -proot -e "SHOW DATABASES;"
71+
mysql -h 127.0.0.1 -uroot -proot -e "USE game_on_test; SHOW TABLES;"
72+
6873
- name: Run unit tests
6974
working-directory: app
7075
env:

app/tests/bootstrap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
Configure::write('App.fullBaseUrl', 'http://localhost');
3535
}
3636

37+
Configure::write('debug', true);
38+
3739
// Fixate now to avoid one-second-leap-issues
3840
Chronos::setTestNow(Chronos::now());
3941

0 commit comments

Comments
 (0)