Skip to content

Commit c90b6b8

Browse files
committed
Stringify the php version arg
1 parent 2de3638 commit c90b6b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162

163163
- run: bin/dev -b
164164
env:
165-
PHP_VERSION: ${{ matrix.php }}
165+
PHP_VERSION: "${{ matrix.php }}"
166166
if: matrix.prepare_container
167167

168168
- run: bin/phpunit --exclude-group=functional

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
build:
88
context: docker
99
args:
10-
PHP_VERSION: ${PHP_VERSION:-7.3}
10+
PHP_VERSION: "${PHP_VERSION:-7.3}"
1111
depends_on:
1212
- rabbitmq
1313
- mysql

0 commit comments

Comments
 (0)