friendica/.drone.yml

45 lines
696 B
YAML
Raw Normal View History

kind: pipeline
2021-05-09 22:56:00 +02:00
type: docker
2021-05-09 23:28:08 +02:00
name: Check messages.po
steps:
2021-05-09 22:56:00 +02:00
- name: Run default Xgettext
image: friendicaci/transifex
commands:
- ./bin/run_xgettext.sh
2021-05-09 22:56:00 +02:00
- name: Check default
image: friendicaci/transifex
commands:
2021-05-13 18:47:12 +02:00
- /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