Skip to content

Commit

Permalink
Added check laravel 11 and php 8.3 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Mar 19, 2024
1 parent fe561b4 commit d0ddefa
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.2, 8.1]
php: [8.3, 8.2, 8.1]
os: [ubuntu-latest, windows-latest]
laravel: [10.*]
laravel: ["11.*", "10.*",]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.1

name: P${{ matrix.php }} - ${{ matrix.os }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down Expand Up @@ -65,7 +72,7 @@ jobs:
run: vendor/bin/dusk-updater detect --auto-update

- name: Execute Unit Tests
run: vendor/bin/phpunit --testsuite=Browser --no-coverage --disable-coverage-ignore
run: vendor/bin/phpunit --testsuite=Browser --no-coverage --disable-coverage-ignore
env:
RUNNING_IN_CI: true

Expand Down

0 comments on commit d0ddefa

Please sign in to comment.