Adding .woodpecker pipelines
Some checks failed
ci/woodpecker/push/code-style Pipeline failed
ci/woodpecker/push/test Pipeline failed

This commit is contained in:
Ferdinand Kuhl 2022-05-01 00:24:35 +02:00
parent 967e61c6c6
commit b10284a7cb
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,6 @@
pipeline:
code-style:
image: thecodingmachine/php:7.4-v4-cli
commands:
- composer install
- vendor/bin/phpcs --standard=DigiComp src

6
.woodpecker/test.yml Normal file
View file

@ -0,0 +1,6 @@
pipeline:
functional-tests:
image: thecodingmachine/php:7.4-v4-cli
commands:
- "composer install"
- "vendor/bin/phpunit --configuration phpunit.xml.dist"