Skip to content

Commit 18600b7

Browse files
committed
ci: fix broken phpunit test command
1 parent 405bbcf commit 18600b7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
php-version: ${{ matrix.php-versions }}
4444
- name: Install dependencies
4545
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
46-
- name: Run unit tests
47-
run: composer tests-unit
46+
- name: Run PHPUnit tests
47+
run: composer phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@
6363
"scripts": {
6464
"php-cs-fixer": "php-cs-fixer fix --dry-run --allow-risky=yes",
6565
"phpstan": "phpstan analyze --ansi",
66-
"tests-unit": "phpunit --testsuite unit"
66+
"phpunit": "phpunit"
6767
}
6868
}

0 commit comments

Comments
 (0)