File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,19 @@ jobs:
14
14
name : Tests - PHP ${{ matrix.php }} ${{ matrix.dependency-version }}
15
15
runs-on : ubuntu-latest
16
16
timeout-minutes : 15
17
+ continue-on-error : ${{ matrix.experimental }}
17
18
strategy :
18
19
matrix :
19
20
php : [ '7.2', '7.3', '7.4', '8.0' ]
20
21
dependency-version : [ '' ]
22
+ experimental : [ false ]
21
23
include :
22
24
- php : ' 7.2'
23
25
dependency-version : ' --prefer-lowest'
26
+ include :
27
+ - php : ' 8.1'
28
+ dependency-version : ' '
29
+ experimental : true
24
30
steps :
25
31
- name : Checkout
26
32
uses : actions/checkout@v2
37
43
key : php-${{ matrix.php }}-composer-locked-${{ hashFiles('composer.lock') }}
38
44
restore-keys : php-${{ matrix.php }}-composer-locked-
39
45
- name : Install PHP dependencies
40
- run : composer update ${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress --no-suggest
46
+ run : composer update ${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress
41
47
- name : PHPUnit
42
48
run : vendor/bin/phpunit
43
49
60
66
key : php-74-composer-locked-${{ hashFiles('composer.lock') }}
61
67
restore-keys : php-74-composer-locked-
62
68
- name : Install PHP dependencies
63
- run : composer install --no-interaction --no-progress --no-suggest
69
+ run : composer install --no-interaction --no-progress
64
70
- name : PHP CodeSniffer
65
71
run : vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr
You can’t perform that action at this time.
0 commit comments