File tree 1 file changed +1
-16
lines changed
1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ matrix:
22
22
- php : 7.2
23
23
env :
24
24
- CODE_COVERAGE="1"
25
- - PHPDOC="1"
26
25
- php : 7.3
27
26
env :
28
27
- CODE_COVERAGE="1"
@@ -40,10 +39,6 @@ install:
40
39
- if [ "${CODE_COVERAGE}" == "1" ]; then
41
40
wget -q -N -t 3 --retry-connrefused 'https://scrutinizer-ci.com/ocular.phar' || return 0;
42
41
fi
43
- - if [ "${PHPDOC}" == "1" ]; then
44
- wget -q -N -t 3 --retry-connrefused 'https://github.com/phpDocumentor/phpDocumentor2/releases/download/v2.9.0/phpDocumentor.phar' || return 0;
45
- composer require --no-update --dev "evert/phpdoc-md:~0.2.0" || return 0;
46
- fi
47
42
- composer install -n
48
43
49
44
script :
@@ -57,7 +52,7 @@ script:
57
52
- php vendor/bin/phpstan analyse --level max src/ tests/
58
53
59
54
# run psalm
60
- - vendor/bin/psalm
55
+ - php vendor/bin/psalm
61
56
62
57
# run benchmarks to make sure they are working fine
63
58
- php vendor/bin/phpbench run --no-interaction --revs=1 --retry-threshold=100
@@ -66,16 +61,6 @@ after_script:
66
61
- if [ "${CODE_COVERAGE}" == "1" ]; then
67
62
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
68
63
fi
69
- - if [ "${PHPDOC}" == "1" ]; then
70
- git clone "https://${CI_USER_TOKEN}@github.com/marc-mabe/php-enum.wiki.git" &&
71
- php phpDocumentor.phar -d src -t docs/ --template="xml" &&
72
- php vendor/bin/phpdocmd --lt '%c' --index 'Home.md' docs/structure.xml php-enum.wiki/ &&
73
- cp php-enum.wiki/Home.md php-enum.wiki/_Sidebar.md &&
74
- cd php-enum.wiki/ &&
75
- git add . &&
76
- git commit -m "auto generated PHP doc" &&
77
- git push origin master:master;
78
- fi
79
64
80
65
notifications :
81
66
email : false
You can’t perform that action at this time.
0 commit comments