Skip to content

Commit 58e7fa1

Browse files
committed
Make matrix naming more consistent
1 parent 74bad1c commit 58e7fa1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
matrix:
1515
arch: ["amd64", "i386"]
1616
operating-system: [ubuntu-latest]
17-
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
18-
php-extensions: ['bcmath', 'gmp']
17+
php-version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
18+
php-extension: ['bcmath', 'gmp']
1919
exclude:
2020
# We are getting weird libxml2 failures on this combo
2121
- arch: "i386"
22-
php-versions: 8.4
22+
php-version: 8.4
2323

24-
name: "PHP ${{ matrix.php-versions }} (with ${{ matrix.php-extensions }}) test on ${{ matrix.operating-system }}/${{ matrix.arch }}"
24+
name: "PHP ${{ matrix.php-version }} (with ${{ matrix.php-extension }}) test on ${{ matrix.operating-system }}/${{ matrix.arch }}"
2525
steps:
2626
- name: Install PHP
2727
uses: shivammathur/setup-php@v2
2828
with:
29-
php-version: ${{ matrix.php-versions }}
30-
extensions: "mbstring, intl, ${{ matrix.php-extensions }}"
29+
php-version: ${{ matrix.php-version }}
30+
extensions: "mbstring, intl, ${{ matrix.php-extension }}"
3131
tools: "composer, phpize"
3232

3333
- name: Checkout

0 commit comments

Comments
 (0)