File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,17 @@ jobs:
14
14
name : PHP ${{ matrix.php-versions }}
15
15
continue-on-error : ${{ matrix.experimental }}
16
16
env :
17
- extensions : curl,json,mbstring,uopz
17
+ extensions : curl,json,mbstring,${{ matrix. uopz }}
18
18
key : cache-v1 # can be any string, change to clear the extension cache.
19
19
strategy :
20
20
matrix :
21
21
php-versions : ['7.3', '7.4']
22
22
experimental : [ false ]
23
+ uopz : [ 'uopz' ]
23
24
include :
24
25
- php-versions : 8.0
25
26
experimental : true
27
+ uopz : ' uopz-snapshot'
26
28
steps :
27
29
- name : Checkout
28
30
uses : actions/checkout@v2
@@ -69,14 +71,14 @@ jobs:
69
71
- name : Install dependencies
70
72
run : composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs
71
73
72
- - name : Run test suite
73
- run : composer run-script test
74
-
75
74
- name : Setup Problem Matchers for PHPUnit
76
75
run : echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
77
76
77
+ - name : Run test suite
78
+ run : composer run-script test
79
+
78
80
- name : PHPStan
79
- run : phpstan analyse --level=4 --error-format=checkstyle src/ | cs2pr
81
+ run : phpstan analyse --level=5 src/
80
82
81
83
- name : PHPCS
82
84
run : phpcs --standard=tests/phpcs.xml --ignore=\*Minifier.php src/ | cs2pr
You can’t perform that action at this time.
0 commit comments