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 31b805a commit 710ebffCopy full SHA for 710ebff
.github/workflows/continuous-integration.yml
@@ -30,8 +30,18 @@ jobs:
30
image: "memcached:${{ matrix.memcached-version }}"
31
ports:
32
- 11211:11211
33
+ mysql:
34
+ image: mysql:8.0.21
35
+ env:
36
+ MYSQL_ROOT_PASSWORD: password
37
+ ports:
38
+ - 3306:3306
39
40
steps:
41
+ - name: Start MySQL
42
+ run: |
43
+ sudo /etc/init.d/mysql start
44
+
45
- name: Checkout
46
uses: actions/checkout@v3
47
with:
@@ -65,4 +75,7 @@ jobs:
65
75
- name: Run Tests
66
76
run: php vendor/bin/phpunit
67
77
env:
68
- MEMCACHED_HOST: 'localhost:11211'
78
+ MEMCACHED_HOST: 'localhost:11211'
79
+ MYSQL_HOST: '127.0.0.1'
80
+ MYSQL_USER: 'root'
81
+ MYSQL_PASSWORD: 'root'
0 commit comments