Files
user_external/.drone.yml
Jonas Sulzer c253ba3f7d 🐛 FIX: update ci (versions of php and nextcloud used)
Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
2021-04-10 17:08:12 +02:00

30 lines
656 B
YAML

kind: pipeline
name: check-app-compatbility
steps:
- name: check-app-compatbility
image: nextcloudci/php7.4:php7.4-2
environment:
APP_NAME: user_external
CORE_BRANCH: master
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
# Code checker
- ./occ app:check-code $APP_NAME -c strong-comparison
- ./occ app:check-code $APP_NAME -c deprecation
matrix:
trigger:
branch:
- master
- stable*
event:
- pull_request
- push