Skip to content

Commit

Permalink
Add a CI job on PHP 8.4 and an experimental one on PHP nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
stof authored Aug 21, 2024
1 parent d1235b2 commit c921f19
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@ jobs:
tests:
runs-on: ubuntu-latest
name: Build and test
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
composer-flags: [ "" ]
experimental: [ false ]
include:
- php: 7.2
composer-flags: "--prefer-lowest"
- php: "8.4" # TODO move that to a normal job once phpspec supports PHP 8.4
composer-flags: "--ignore-platform-req=php+"
- php: nightly
composer-flags: "--ignore-platform-req=php+"
experimental: true

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c921f19

Please sign in to comment.