Skip to content

Commit 4b35484

Browse files
committed
update: schema-dump.yml
1 parent c3e9948 commit 4b35484

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/schema-dump.yml

+14-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ jobs:
1919
ports:
2020
- 3306:3306
2121
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
22+
redis:
23+
image: redis:7.2.1
24+
ports:
25+
- 6379:6379
26+
options: >-
27+
--health-cmd "redis-cli ping"
28+
--health-interval 10s
29+
--health-timeout 5s
30+
--health-retries 5
2231
steps:
2332
- name: Checkout
2433
uses: actions/checkout@v4
@@ -28,8 +37,12 @@ jobs:
2837
uses: shivammathur/setup-php@v2
2938
with:
3039
php-version: ${{ matrix.php-version }}
31-
extensions: bcmath, ctype, dom, fileinfo, json, libxml, mbstring, openssl, pdo, tokenizer, xml, zip, mysql
40+
extensions: curl, dom, gd, libxml, mbstring, zip, mysql, xml, intl, bcmath, redis-phpredis/phpredis@6.0.1
41+
ini-values: error_reporting=E_ALL
3242
coverage: none
43+
tools: composer:v2
44+
env:
45+
REDIS_CONFIGURE_OPTS: --enable-redis
3346
- name: Install Composer Dependencies
3447
env:
3548
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}

0 commit comments

Comments
 (0)