Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
push:
branches: [main, next, master, 2.5, 3.4, 4.3, 5.1, 6.3]
branches: [main, next, master, 2.5, 3.4, 4.3, 5.1, 6.3, 7.5]
pull_request:
release:
types: [created]
Expand Down Expand Up @@ -30,6 +30,8 @@ jobs:
operating-system: windows-latest
- php: "8.2"
- php: "8.3"
- php: "8.4" # TODO move that to a normal job once prophecy supports PHP 8.4
composer-flags: "--ignore-platform-req=php+"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like it's done now

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

except #1479


env:
COMPOSER_ROOT_VERSION: dev-master
Expand Down Expand Up @@ -85,7 +87,7 @@ jobs:
run: ./vendor/bin/behat --format=progress

- name: Build the PHAR
if: matrix.php != '8.0' && matrix.php != '8.1' && matrix.php != '8.2' && matrix.php != '8.3'
if: matrix.php != '8.0' && matrix.php != '8.1' && matrix.php != '8.2' && matrix.php != '8.3' && matrix.php != '8.4'
run: |
composer config platform.php 7.3.0 &&
ln -s `which composer` composer.phar &&
Expand Down