See #375. Install htmlbeautifier, php-cs-fixer, emacs for Windows CI
This commit is contained in:
parent
66867a78b2
commit
d9352410ff
18
appveyor.yml
18
appveyor.yml
|
@ -77,10 +77,26 @@ install:
|
||||||
|
|
||||||
# Ruby & Gem
|
# Ruby & Gem
|
||||||
- cinst ruby -y
|
- cinst ruby -y
|
||||||
|
# Rubocop
|
||||||
- gem install rubocop
|
- gem install rubocop
|
||||||
|
- where rubocop
|
||||||
|
# HTMLBeautifier
|
||||||
|
- gem install htmlbeautifier
|
||||||
|
- where htmlbeautifier
|
||||||
|
|
||||||
# PHP
|
# PHP
|
||||||
- cinst php -y
|
- cinst php -y
|
||||||
|
- where php
|
||||||
|
# Composer
|
||||||
|
- php -r "readfile('https://getcomposer.org/installer');" | php
|
||||||
|
- echo @php "%~dp0composer.phar" %*>composer.bat
|
||||||
|
# PHP-CS-Fixer
|
||||||
|
- ./composer.phar global require fabpot/php-cs-fixer
|
||||||
|
- where php-cs-fixer
|
||||||
|
|
||||||
|
# emacs
|
||||||
|
- cinst emacs -y
|
||||||
|
- where emacs
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
|
Loading…
Reference in New Issue