We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e0fa3 commit 2412cf3Copy full SHA for 2412cf3
.github/workflows/main.yml
@@ -34,6 +34,5 @@ jobs:
34
- name: Run unit tests
35
uses: php-actions/phpunit@v3
36
with:
37
- configuration: phpunit.xml.dist
38
php_version: ${{ matrix.php-version }}
39
- args: --testsuite "Unit"
+ args: --testsuite unit
phpunit.xml.dist
@@ -2,11 +2,11 @@
2
<phpunit colors="true" verbose="true"
3
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5
- bootstrap="./vendor/autoload.php"
+ bootstrap="vendor/autoload.php"
6
>
7
<testsuites>
8
- <testsuite name="Unit">
9
- <directory>./tests/Unit</directory>
+ <testsuite name="unit">
+ <directory>tests/Unit</directory>
10
</testsuite>
11
</testsuites>
12
</phpunit>
0 commit comments