phpunit icon indicating copy to clipboard operation
phpunit copied to clipboard

Run your PHPUnit tests in your Github Actions.

Results 18 phpunit issues
Sort by recently updated
recently updated
newest added

Because there are older releases with higher version numbers, Dependabot will try to bump this action incorrectly. The workaround is to add the following [ignore condition](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore): ```yaml ignore: - dependency-name:...

I am using GitHub Actions to run PHPUnit for each push to a PR. I implemented this GitHub Action for PHPUnit and my YML file is as follows. ``` name:...

Hello! I'm trying to set my working directory to src as my project exists within it. I am unable to find a method by which to configure this while using...

Hi, In my Laravel project, I [squashed](https://laravel.com/docs/9.x/migrations#squashing-migrations) my migrations which resulted in a `schema.dump` (sql) file which is imported when running your migrations. I my tests we make use of...

After I upgraded to PHP 8.0 I was faced with the following error message. The user is an organization on GitHub and the repo is a private one. I have...

It would be helpful if this action would support the PHPUnits CLI Parameters "--coverage-clover" and "--coverage-xml".

Either by default or with a new option, use the PHPUnit version specified in the repo's composer.json/lock file.

It would be nice if just specifying `coverage_*` automatically did whatever it needed, so I try that ``` - uses: php-actions/phpunit@v3 with: version: 10 php_version: ${{ matrix.php }} php_extensions: xdebug...