Skip to content

Commit 75b5608

Browse files
committed
ci: test against PHP 8.5
1 parent a30114c commit 75b5608

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
git config --global core.eol lf
1717
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
@@ -43,7 +43,7 @@ jobs:
4343
steps:
4444

4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
- name: Setup PHP
4949
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
php: ['8.2', '8.3', '8.4']
11+
php: ['8.2', '8.3', '8.4', '8.5']
1212
dependency-version: [lowest, highest]
1313

1414
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
1515

1616
steps:
1717

1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2

phpstan.neon.dist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ parameters:
55
reportUnmatchedIgnoredErrors: false
66

77
ignoreErrors:
8+
- identifier: class.notFound
9+
path: **/stubs/*.php
810
- message: '#Class LaravelZero\\Framework\\Providers\\Collision\\CollisionServiceProvider extends @final class NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider#'
911
path: src/Providers/Collision/CollisionServiceProvider.php

0 commit comments

Comments
 (0)