Skip to content

Commit

Permalink
Add PHPUnit installation to workflow
Browse files Browse the repository at this point in the history
This commit includes PHPUnit as a part of the CI build process. The aim is to facilitate easier and more efficient testing by automatically installing PHPUnit in the continuous integration workflow.
  • Loading branch information
koriym committed Jul 9, 2024
1 parent 527f745 commit ef64d96
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/continuous-integration-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Install Composer dependencies
run: composer install --no-dev --prefer-dist --no-progress

- name: Install PHPUnit
run: composer require phpunit/phpunit --dev --prefer-dist --no-progress

- name: Build extension
id: build_extension
run: |
Expand Down

0 comments on commit ef64d96

Please sign in to comment.