]> git.mxchange.org Git - friendica.git/blobdiff - .drone.yml
Merge pull request #10244 from tobiasd/20210514-de
[friendica.git] / .drone.yml
index d06389c67f87cbd72b9dbeda1554535da3faabdc..257fe23d7dc12b19132d113ff09920dfdb7185b4 100644 (file)
@@ -1,6 +1,6 @@
 kind: pipeline
 type: docker
-name: Check messasges.po
+name: Check messages.po
 
 steps:
   - name: Run default Xgettext
@@ -11,4 +11,53 @@ steps:
   - name: Check default
     image: friendicaci/transifex
     commands:
-      - /check-messages.sh
\ No newline at end of file
+      - /check-messages.sh
+---
+kind: pipeline
+type: docker
+name: php7.3-lint
+
+steps:
+  - name: Test
+    image: php:7.3
+    commands:
+      - ./bin/composer.phar run lint
+---
+kind: pipeline
+type: docker
+name: php7.4-lint
+
+steps:
+  - name: Test
+    image: php:7.4
+    commands:
+      - ./bin/composer.phar run lint
+---
+kind: pipeline
+type: docker
+name: php8.0-lint
+
+steps:
+  - name: Test
+    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