Skip to content

Commit 2433247

Browse files
committed
Quote all version numbers in the CI configuration
This makes our usage of version numbers in the configuration file consistent. It also ensures that no version number will get treated as a number and rounded (e.g., 8.0 would have gotten rounded to 8).
1 parent 882ffac commit 2433247

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3' ]
4343
coverage: [ 'none' ]
4444
include:
45-
- php-version: 7.4
45+
- php-version: '7.4'
4646
coverage: xdebug
4747

4848
steps:
@@ -91,11 +91,11 @@ jobs:
9191
matrix:
9292
include:
9393
- command: sniffer
94-
php-version: 7.4
94+
php-version: '7.4'
9595
- command: fixer
96-
php-version: 7.4
96+
php-version: '7.4'
9797
- command: stan
98-
php-version: 7.4
98+
php-version: '7.4'
9999

100100
steps:
101101
- name: Checkout

0 commit comments

Comments
 (0)