phpDocumentor / Reflection

Reflection library to do Static Analysis for PHP Projects
MIT License
117 stars 51 forks source link

GH Actions: turn on tests against PHP 8.1 & various other tweaks #210

Closed jrfnl closed 3 years ago

jrfnl commented 3 years ago

TL;DR: these are largely the same CI changes which I made, and which have been merged, in the other repos. As I cloned this repo now for the CS update anyway, figured I may as well bring the CI in line as well.

The build will fail until PR #209 has been merged, but should pass without issue after that.

Commit details

GH Actions: allow for manually triggering a workflow

Triggering a workflow for a branch manually is not supported by default in GH Actions, but has to be explicitly allowed.

This is useful if, for instance, an external action script or composer dependency has broken. Once a fix is available, failing builds for open PRs can be retriggered manually instead of having to be re-pushed to retrigger the workflow.

Ref: https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/

GH Actions: simplify Composer caching

... by using the ramsey/composer-install action.

Ref: https://github.com/marketplace/actions/install-composer-dependencies

GH Actions: fail the build if a test run fails

The way things were set up now in the phpunit job, no matter whether tests passed or failed, the workflow would always continue.

I suspect this may have been set-up this way to make sure that all variations of test runs will actually be run ? The downside is that, while you will see a ❌ for the individual build, the workflow will not be marked as failed if a test runs fails.

I'm proposing to change this now by:

Phive: upgrade used version of PHPUnit

GH Actions: start testing against PHP 8.1

As the tests currently pass, I see no reason to allow them to fail.

jaapio commented 3 years ago

As the tests currently pass, I see no reason to allow them to fail.

I like this, because this library is using the others you are updating :-) so we are moving forward regarding the stability of the libraries. Allowing me to focus on new features :-D

jrfnl commented 3 years ago

@jaapio In that case, we may as well remove the continue-on-error from the TypeResolver CI workflow as well, as IIRC the build against PHP 8.1 for that repo passes too.