File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,10 @@ name: CI
3
3
4
4
on :
5
5
push :
6
+
6
7
pull_request :
8
+ branches :
9
+ - ' *'
7
10
8
11
jobs :
9
12
testsuite :
65
68
if [[ ${{ matrix.db-type }} == 'sqlite' ]]; then export DB_URL='sqlite:///:memory:'; fi
66
69
if [[ ${{ matrix.db-type }} == 'mysql' ]]; then export DB_URL='mysql://root:[email protected] /cakephp?encoding=utf8'; fi
67
70
if [[ ${{ matrix.db-type }} == 'pgsql' ]]; then export DB_URL='postgres://postgres:[email protected] /postgres'; fi
68
- if [[ ${{ matrix.php-version }} == '7.4 ' ]]; then
69
- export CODECOVERAGE=1 && vendor/bin/phpunit --verbose --coverage-clover=coverage.xml
71
+ if [[ ${{ matrix.php-version }} == '8.1 ' ]]; then
72
+ export CODECOVERAGE=1 && vendor/bin/phpunit --display-deprecations --display-incomplete --display-skipped --coverage-clover=coverage.xml
70
73
else
71
74
vendor/bin/phpunit
72
75
fi
@@ -109,14 +112,11 @@ jobs:
109
112
110
113
- name : Run PHP CodeSniffer
111
114
run : composer cs-check
112
- continue-on-error : true
113
115
114
116
- name : Run psalm
115
117
if : success() || failure()
116
118
run : composer psalm
117
- continue-on-error : true
118
119
119
120
- name : Run phpstan
120
121
if : success() || failure()
121
122
run : composer stan
122
- continue-on-error : true
You can’t perform that action at this time.
0 commit comments