backupscript/.woodpecker.yml
Jens True c59de96874
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Trying to get last step to pass
2023-06-01 09:51:24 +00:00

22 lines
531 B
YAML

pipeline:
requirements:
image: composer
commands:
- composer install --no-dev
run:
image: php
commands:
- ./backup show config.example.yml
test:
image: composer
commands:
- composer install
- ./vendor/bin/phpunit tests
tools:
image: php
commands:
- "./vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode"
- "./vendor/bin/phpstan analyze --level=7 src/ backup"
- "./vendor/bin/psalm"
- "./vendor/bin/phpcs src"
- "exit 0"