Skip to content
Snippets Groups Projects
Commit bdc93865 authored by Erick Hitter's avatar Erick Hitter
Browse files

Testing linting and unit-test reporting

parent 592f0567
Branches add/junit-lint
No related tags found
4 merge requests!10WIP: Add typehint checking,!9WIP: Capture PHPUnit reports,!6add linting,!5WIP: Add JUnit reporting
Pipeline #361 passed
......@@ -24,26 +24,38 @@ before_script:
- composer global require automattic/vipwpcs
- phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs,$HOME/.composer/vendor/automattic/vipwpcs
PHPunit:PHP7.0:MySQL:
test_7.0:
image: containers.ethitter.com:443/docker/images/php:7.0
services:
- mysql:5.6
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/wordpress-tests-lib/tests/phpunit/build/logs/junit.xml
PHPunit:PHP7.1:MySQL:
test_7.1:
image: containers.ethitter.com:443/docker/images/php:7.1
services:
- mysql:5.6
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/wordpress-tests-lib/tests/phpunit/build/logs/junit.xml
PHPunit:PHP7.2:MySQL:
test_7.2:
image: containers.ethitter.com:443/docker/images/php:7.2
services:
- mysql:5.6
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
artifacts:
reports:
junit: /tmp/wordpress-tests-lib/tests/phpunit/build/logs/junit.xml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment