mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
44 lines
696 B
YAML
44 lines
696 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Check messages.po
|
|
|
|
steps:
|
|
- name: Run default Xgettext
|
|
image: friendicaci/transifex
|
|
commands:
|
|
- ./bin/run_xgettext.sh
|
|
|
|
- name: Check default
|
|
image: friendicaci/transifex
|
|
commands:
|
|
- /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
|