Use GitHub actions for continuous integration (CI) #230
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bye bye Travis CI, you've served us well.
I'm currently in the process of moving all ReactPHP repositories from Travis CI to GitHub actions with the help of @SimonFrings. Moving this repository has required some significant effort due to all event loop extensions that are used in the test suite.
With these changes applied, we've now successfully moved all our components over to GitHub actions. On top of this, we can now successfully test against PHP 8 (#221).
There is some room for improvement for the CI setup, but I've intentionally tried to keep this as close to the Travis CI setup as possible. Once we get rid of some legacy installations, there's potential to significantly simplify this setup by installing extensions using the respective GitHub action instead manually installing. This is left up for a future follow-up PR.
Builds on top of #215 and reactphp/reactphp#442.
Refs #203