File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
tests :
11
- runs-on : ubuntu-latest
12
-
13
11
strategy :
14
12
fail-fast : false
15
13
matrix :
16
- php : [8.0, 8.1, 8.2]
14
+ php : [8.1, 8.2]
15
+ os : [ubuntu-22.04]
17
16
stability : [prefer-lowest, prefer-stable]
17
+ include :
18
+ - os : ubuntu-20.04
19
+ php : 8.0
20
+ stability : prefer-lowest
21
+ - os : ubuntu-20.04
22
+ php : 8.0
23
+ stability : prefer-stable
24
+
25
+ runs-on : ${{ matrix.os }}
18
26
19
27
name : PHP ${{ matrix.php }} - ${{ matrix.stability }}
20
28
Original file line number Diff line number Diff line change @@ -54,9 +54,6 @@ public function testKeyString()
54
54
55
55
public function testUnsupportedKeyType ()
56
56
{
57
- if (\str_starts_with (\phpversion (), '8.0 ' )) {
58
- $ this ->markTestSkipped ('Cannot generate key on PHP 8.0 runner. Investigating ' );
59
- }
60
57
$ this ->expectException (\LogicException::class);
61
58
$ this ->expectExceptionMessage ('Unable to read key ' );
62
59
You can’t perform that action at this time.
0 commit comments