We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4629481 commit afe16b7Copy full SHA for afe16b7
1 file changed
.github/workflows/ci.yml
@@ -112,9 +112,12 @@ jobs:
112
# php-version: ${{ matrix.php-version }}
113
version: latest
114
115
- # Step 3: Run the actual tests.
+ # Step 3: Install PHPUnit and run the actual tests.
116
# This command is typically defined in your `composer.json` or `package.json`.
117
# It executes the PHPUnit test suite.
118
+ - name: Install PHP dependencies
119
+ run: composer install --prefer-dist --no-interaction
120
+
121
- name: Run tests with PHPUnit with coverage report
122
run: vendor/bin/phpunit --coverage-clover=coverage.xml
123
0 commit comments