We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7756a4e commit b23d61cCopy full SHA for b23d61c
.github/workflows/deploy.yml
@@ -23,7 +23,7 @@ jobs:
23
image: mysql:8.0
24
env:
25
MYSQL_ROOT_PASSWORD: password
26
- MYSQL_DATABASE: laravel_test
+ MYSQL_DATABASE: laravel
27
options: >-
28
--health-cmd="mysqladmin ping"
29
--health-interval=10s
@@ -65,18 +65,19 @@ jobs:
65
php artisan config:cache
66
67
- name: Run tests
68
+ run: |
69
+ php artisan migrate --force
70
+ php artisan test
71
72
DB_CONNECTION: mysql
73
DB_HOST: 127.0.0.1
74
DB_PORT: 3306
- DB_DATABASE: laravel_test
75
+ DB_DATABASE: laravel
76
DB_USERNAME: root
77
DB_PASSWORD: password
78
REDIS_HOST: 127.0.0.1
79
REDIS_PORT: 6379
- run: |
- php artisan migrate --force
- php artisan test
80
+
81
82
deploy:
83
name: Deploy to ECS
0 commit comments