Skip to content

Commit 2412cf3

Browse files
Remove explicit mention of config from workflow
1 parent d3e0fa3 commit 2412cf3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,5 @@ jobs:
3434
- name: Run unit tests
3535
uses: php-actions/phpunit@v3
3636
with:
37-
configuration: phpunit.xml.dist
3837
php_version: ${{ matrix.php-version }}
39-
args: --testsuite "Unit"
38+
args: --testsuite unit

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<phpunit colors="true" verbose="true"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5-
bootstrap="./vendor/autoload.php"
5+
bootstrap="vendor/autoload.php"
66
>
77
<testsuites>
8-
<testsuite name="Unit">
9-
<directory>./tests/Unit</directory>
8+
<testsuite name="unit">
9+
<directory>tests/Unit</directory>
1010
</testsuite>
1111
</testsuites>
1212
</phpunit>

0 commit comments

Comments
 (0)