mirror of
https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2025-08-17 18:11:17 +08:00
new file: .github/workflows/ci.yml new file: .github/workflows/codeql.yml deleted: .github/workflows/mega-linter.yml new file: .github/workflows/pr-auto-fix.yml deleted: .mega-linter.yml new file: .stylelintrc.json modified: phpcs.xml new file: phpstan.neon new file: phpunit.xml
11 lines
317 B
XML
11 lines
317 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
verbose="true"
|
|
stopOnFailure="false">
|
|
<testsuites>
|
|
<testsuite name="Application Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|