Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.drone.yml - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f05a92e874cf26a55a3d1ebdf298fb424c9258c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
kind: pipeline
name: syntax-php7.0

steps:
  - name: syntax-php7.0
    image: nextcloudci/php7.0:php7.0-7
    commands:
      - composer install
      - ./vendor/bin/parallel-lint --exclude vendor/ .

trigger:
  branch:
    - master
    - stable*
  event:
    - pull_request
    - push

---
kind: pipeline
name: syntax-php7.1

steps:
  - name: syntax-php7.1
    image: nextcloudci/php7.1:php7.1-11
    commands:
      - composer install
      - ./vendor/bin/parallel-lint --exclude vendor/ .

trigger:
  branch:
    - master
    - stable*
  event:
    - pull_request
    - push