phpunit icon indicating copy to clipboard operation
phpunit copied to clipboard

Nightly build using PHP 8.4

Open sebastianbergmann opened this issue 11 months ago • 2 comments

We need a nightly build of all branches (currently: 8.5, 9.6, 10.5, 11.0, main) using the nightly build of the next PHP version (currently PHP 8.4) in order to identify that PHPUnit needs to be updated to a change in the PHP version as soon as possible.

sebastianbergmann avatar Mar 10 '24 08:03 sebastianbergmann

According to https://github.com/sebastianbergmann/phpunit/actions?query=event%3Aschedule, the nightly build was only performed for main, but not for 8.5, 9.6, 10.5, and 11.0.

sebastianbergmann avatar Mar 13 '24 15:03 sebastianbergmann

on: schedule event only runs on the last commit of the default branch.

However we may be able to generate matrix of branch names.

- uses: actions/checkout@v4
        with:
          ref: ${matrix.branch}

https://github.com/actions/checkout?tab=readme-ov-file#checkout-a-different-branch

ghostwriter avatar Mar 16 '24 04:03 ghostwriter