We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba0531 commit 605e235Copy full SHA for 605e235
2 files changed
.github/workflows/ci.yml
@@ -43,5 +43,5 @@ jobs:
43
php-version: ${{ matrix.php-versions }}
44
- name: Install dependencies
45
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
46
- - name: Run unit tests
47
- run: composer tests-unit
+ - name: Run PHPUnit tests
+ run: composer phpunit
composer.json
@@ -63,6 +63,6 @@
63
"scripts": {
64
"php-cs-fixer": "php-cs-fixer fix --dry-run --allow-risky=yes",
65
"phpstan": "phpstan analyze --ansi",
66
- "tests-unit": "phpunit --testsuite unit"
+ "phpunit": "phpunit"
67
}
68
0 commit comments