Skip to content

Commit 665a954

Browse files
authored
fix: 🐛 --prewer-lowest doesn't work since PHP 7.2 (#3)
1 parent 6092588 commit 665a954

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ jobs:
99
strategy:
1010
matrix:
1111
php: [5.3, 5.4, 5.5, 5.6, '7.0', 7.1, 7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
12-
flags: [--prefer-lowest, '']
12+
flags: ['']
13+
include:
14+
- { php: 5.3, flags: --prefer-lowest }
15+
- { php: 5.4, flags: --prefer-lowest }
16+
- { php: 5.5, flags: --prefer-lowest }
17+
- { php: 5.6, flags: --prefer-lowest }
18+
- { php: '7.0', flags: --prefer-lowest }
19+
- { php: 7.1, flags: --prefer-lowest }
1320

1421
steps:
1522
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)