Skip to content

Commit

Permalink
Make PHP 8.4 test experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Nov 15, 2024
1 parent 1c4bde2 commit aed159f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,22 @@ jobs:
build:
strategy:
fail-fast: false
continue-on-error: ${{ matrix.experimental }}
matrix:
operating-system: [ubuntu-latest]
php-versions: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
php-version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
experimental: [false]
include:
- php-version: "8.4"
experimental: true
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
php-version: ${{ matrix.php-version }}
extensions: gmp
coverage: xdebug
#coverage: pcov
Expand Down

0 comments on commit aed159f

Please sign in to comment.