File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,13 @@ jobs:
57
57
with :
58
58
dependency-versions : ' ${{ matrix.dependencies }}'
59
59
60
- - name : Run PHPUnit
61
- run : vendor/bin/phpunit ${{ matrix.phpunit-args }}
62
-
63
60
- name : Validate composer
64
61
run : composer validate --strict --no-check-lock
65
62
63
+ - name : Run php_codesniffer
64
+ run : composer cs-check
65
+ if : ${{ matrix.php-version == '7.2' }} # Do not suggest using features after 7.2
66
+
66
67
- name : phpstan-cache
67
68
uses : actions/cache@v2
68
69
with :
77
78
- name : Run phpstan
78
79
run : composer phpstan
79
80
80
- - name : Run php_codesniffer
81
- run : composer cs-check
82
- if : ${{ matrix.php-version == '7.2' }} # Do not suggest using features after 7.2
81
+ - name : Run PHPUnit
82
+ run : vendor/bin/phpunit ${{ matrix.phpunit-args }}
83
83
84
84
- name : Upload coverage results to Coveralls
85
85
run : vendor/bin/php-coveralls --coverage_clover=coverage.xml -v
You can’t perform that action at this time.
0 commit comments