Skip to content

Commit 4ec2ec7

Browse files
committed
Fix quoting of matrix values
1 parent c8570b1 commit 4ec2ec7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
strategy:
3636
matrix:
3737
php:
38-
- 7.1
39-
- 7.2
40-
- 7.3
41-
- 7.4
42-
- 8.0
38+
- "7.1"
39+
- "7.2"
40+
- "7.3"
41+
- "7.4"
42+
- "8.0"
4343
steps:
4444
- uses: actions/checkout@v2
4545

@@ -50,7 +50,7 @@ jobs:
5050
uses: mheap/phpunit-matcher-action@v1
5151

5252
- name: Run unit tests on PHP ${{ matrix.php }}
53-
run: make test-php-${{ matrix.php }} -s
53+
run: make -s "test-php-${{ matrix.php }}"
5454
env:
5555
COMPOSE_INTERACTIVE_NO_CLI: 1
5656
PHPUNIT_OPTIONS: "--teamcity"

0 commit comments

Comments
 (0)