diff --git a/.woodpecker/code-style.yml b/.woodpecker/code-style.yml new file mode 100644 index 0000000..2501738 --- /dev/null +++ b/.woodpecker/code-style.yml @@ -0,0 +1,6 @@ +pipeline: + code-style: + image: thecodingmachine/php:7.4-v4-cli + commands: + - composer install + - vendor/bin/phpcs --standard=DigiComp src diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..2a2b23c --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,6 @@ +pipeline: + functional-tests: + image: thecodingmachine/php:7.4-v4-cli + commands: + - "composer install" + - "vendor/bin/phpunit --configuration phpunit.xml.dist"