]> git.mxchange.org Git - friendica.git/blobdiff - .drone.yml
Unused use
[friendica.git] / .drone.yml
index 74dacfca4981d8db84a6eaff54f5c6cc44f90381..257fe23d7dc12b19132d113ff09920dfdb7185b4 100644 (file)
@@ -42,3 +42,22 @@ steps:
     image: php:8.0
     commands:
       - ./bin/composer.phar run lint
+---
+kind: pipeline
+type: docker
+name: php-cs check
+
+trigger:
+  event:
+    - pull_request
+
+steps:
+  - name: Install dependencies
+    image: composer
+    commands:
+      - ./bin/composer.phar run cs:install
+  - name: Run coding standards check
+    image: friendicaci/php-cs
+    commands:
+      - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)"
+      - /check-php-cs.sh