Skip to content

Commit 99be307

Browse files
committed
TBF
1 parent c1985ee commit 99be307

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66

77
jobs:
88
tests:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
strategy:
1111
matrix:
12-
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
12+
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1313
name: PHP ${{ matrix.php }}
1414
steps:
15-
- uses: actions/checkout@v3
16-
# required for "git tag" presence for MonorepoBuilder split and ChangelogLinker git tags resolver; default is 1
17-
- run: git fetch --depth=100000 origin
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 5
1818
# see https://github.com/shivammathur/setup-php
1919
- uses: shivammathur/setup-php@v2
2020
with:
@@ -25,10 +25,11 @@ jobs:
2525
- run: composer phpunit
2626

2727
tests_lowest_dependencies:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
30-
- uses: actions/checkout@v3
31-
- run: git fetch --depth=100000 origin
30+
- uses: actions/checkout@v4
31+
with:
32+
fetch-depth: 5
3233
# see https://github.com/shivammathur/setup-php
3334
- uses: shivammathur/setup-php@v2
3435
with:

phpstan.neon

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ includes:
33
- vendor/phpstan/phpstan-phpunit/rules.neon
44
- vendor/phpstan/phpstan-strict-rules/rules.neon
55
parameters:
6-
checkMissingIterableValueType: false
76
reportUnmatchedIgnoredErrors: false
8-
treatPhpDocTypesAsCertain: false
7+
treatPhpDocTypesAsCertain: false
8+
ignoreErrors:
9+
-
10+
identifier: missingType.iterableValue

0 commit comments

Comments
 (0)