Skip to content

Commit

Permalink
Fix: Allow tests to fail on PHP 8.3 (#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored Sep 2, 2023
1 parent af7428b commit 8a79daf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,20 @@ name: "Tests"

jobs:
phpunit:
name: "PHPUnit"
name: "PHPUnit (${{ matrix.php-version }})"

strategy:
matrix:
experimental:
- false
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
include:
- experimental: true
php-version: "8.3"

runs-on: "ubuntu-latest"

Expand Down Expand Up @@ -53,3 +57,4 @@ jobs:

- name: "Run tests"
run: "./vendor/bin/phpunit --colors=always"
continue-on-error: "${{ matrix.experimental }}"

0 comments on commit 8a79daf

Please sign in to comment.