updates for Filament v4

This commit is contained in:
Adam Weston
2025-06-21 11:19:47 -04:00
parent 93d46d196d
commit c2645897dd
18 changed files with 110 additions and 84 deletions

View File

@@ -22,6 +22,6 @@ jobs:
uses: aglipanci/laravel-pint-action@2.4
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: Fix styling

View File

@@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
coverage: none
- name: Install composer dependencies

View File

@@ -1,4 +1,4 @@
name: run-tests
name: "Run Tests"
on:
push:
@@ -13,19 +13,18 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
laravel: [11.*, 10.*]
php: [8.4, 8.3, 8.2]
laravel: [12.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
carbon: 2.*
- laravel: 12.*
testbench: 10.*
carbon: 3.*
collision: 8.*
- laravel: 11.*
testbench: 9.*
carbon: 3.*
exclude:
- laravel: 11.*
php: 8.1
collision: 8.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}