Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Tests
on:
push:
paths-ignore:
- 'readme.md'
- readme.md
pull_request:
paths-ignore:
- 'readme.md'
- readme.md
release:

jobs:
Expand All @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: [11.*]
laravel: ['11.*', '12.*']
php: [8.2, 8.3]

name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }}
Expand All @@ -33,8 +33,8 @@ jobs:

- name: Install dependencies
run: |
composer require "illuminate/contracts:${{ matrix.laravel }}" "illuminate/filesystem:${{ matrix.laravel }}" "illuminate/container:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
composer require "illuminate/contracts:${{ matrix.laravel }}" "illuminate/filesystem:${{ matrix.laravel }}" "illuminate/container:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction --no-suggest

- name: Run tests
run: vendor/bin/pest
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
},
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/filesystem": "^11.0|^12.0",
"symfony/http-foundation": "^7.0"
},
"require-dev": {
"illuminate/container": "^11.0",
"illuminate/container": "^11.0|^12.0",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.6.9",
"pestphp/pest": "3.x-dev",
"pestphp/pest": "3.x-dev|^3.7",
"phpunit/phpunit": "^11.0",
"symfony/var-dumper": "^7.0"
},
Expand Down
Loading