-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix obsolete docker-compose command in CIs
- Loading branch information
Showing
4 changed files
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
echo "\n🚔 \033[0;32mRunning Code Sniffer Drupal & DrupalPractice for ./web/modules/contrib/timesup/ ...\033[0m" | ||
docker-compose exec drupal ./vendor/bin/phpcs ./web/modules/contrib/timesup/ | ||
docker compose exec drupal ./vendor/bin/phpcs ./web/modules/contrib/timesup/ | ||
|
||
echo "\n💩 \033[0;32mRunning PHP Mess Detector ...\033[0m" | ||
docker-compose exec drupal phpmd ./web/modules/contrib/timesup/ text ./phpmd.xml --suffixes php,module,inc,install,test,profile,theme,css,info,txt --exclude *Test.php,*vendor/* | ||
docker compose exec drupal phpmd ./web/modules/contrib/timesup/ text ./phpmd.xml --suffixes php,module,inc,install,test,profile,theme,css,info,txt --exclude *Test.php,*vendor/* | ||
|
||
echo "\n🛂 \033[0;32mRunning PHP Copy/Paste Detector ...\033[0m" | ||
docker-compose exec drupal phpcpd ./web/modules/contrib/timesup/src --suffix .php --suffix .module --suffix .inc --suffix .install --suffix .test --suffix .profile --suffix .theme --suffix .css --suffix .info --suffix .txt --exclude *.md --exclude *.info.yml --exclude tests --exclude vendor/ | ||
docker compose exec drupal phpcpd ./web/modules/contrib/timesup/src --suffix .php --suffix .module --suffix .inc --suffix .install --suffix .test --suffix .profile --suffix .theme --suffix .css --suffix .info --suffix .txt --exclude *.md --exclude *.info.yml --exclude tests --exclude vendor/ | ||
|
||
echo "\n🍫 \033[0;32mRunning PhpDeprecationDetector ...\033[0m" | ||
docker-compose exec drupal phpdd ./web/modules/contrib/timesup/ --file-extensions php,module,inc,install,test,profile,theme,info --exclude vendor | ||
docker compose exec drupal phpdd ./web/modules/contrib/timesup/ --file-extensions php,module,inc,install,test,profile,theme,info --exclude vendor |