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 29bd4bd commit 865a8aeCopy full SHA for 865a8ae
.github/workflows/tests.yml
@@ -6,6 +6,16 @@ jobs:
6
tests:
7
runs-on: ubuntu-latest
8
9
+ services:
10
+ mysql:
11
+ image: mysql:5.7
12
+ env:
13
+ MYSQL_ALLOW_EMPTY_PASSWORD: yes
14
+ MYSQL_DATABASE: laravel
15
+ ports:
16
+ - 3306:3306
17
+ options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
18
+
19
steps:
20
- name: Checkout code
21
uses: actions/checkout@v2
@@ -28,6 +38,10 @@ jobs:
28
38
29
39
- name: Execute tests
30
40
run: vendor/bin/pest
41
42
+ DB_CONNECTION: mysql
43
+ DB_COLLATION: utf8mb4_unicode_ci
44
+ DB_DATABASE: laravel
31
45
32
46
- name: Deploy
33
47
if: github.repository == 'laravelio/laravel.io' && github.ref_name == 'main'
0 commit comments