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: a422c034f6876f9b754c855236ad3043d63d2e33 (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: ghcr.io/nextcloud/continuous-integration-php7.0:php7.0-19
    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: ghcr.io/nextcloud/continuous-integration-php7.1:php7.1-16
    commands:
      - composer install
      - ./vendor/bin/parallel-lint --exclude vendor/ .

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