php-actions / phpunit

Run PHPUnit tests in Github Actions.
108 stars 24 forks source link

Match official PHPUnit release version numbers with this action #12

Closed g105b closed 4 years ago

g105b commented 4 years ago

In issue #11 , the OP's problem was caused by using a different version of PHPUnit in the composer.json. This action has one single job to do, which is run phpunit, so its action version should be in sync with PHPUnit's official versioning. That way, it's so easy to require the correct version of PHPUnit in your action YML... use the same one!

g105b commented 4 years ago

Backdate old versions of PHPUnit up to latest v9.

g105b commented 4 years ago

Done