Skip to content

Commit e74ab45

Browse files
authored
Merge pull request #1197 from rebing/mfn/php-8.5
gha: test with PHP 8.5
2 parents a7c0bc8 + 9389728 commit e74ab45

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Code Analysis
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Integration tests
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)
@@ -25,7 +27,7 @@ jobs:
2527
strategy:
2628
fail-fast: false
2729
matrix:
28-
php: [8.2, 8.3, 8.4]
30+
php: [8.2, 8.3, 8.4, 8.5]
2931
laravel: [^11.0, ^12.0]
3032
name: P=${{ matrix.php }} L=${{ matrix.laravel }}
3133
runs-on: ubuntu-latest

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Tests
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)
@@ -25,7 +27,7 @@ jobs:
2527
strategy:
2628
fail-fast: false
2729
matrix:
28-
php: [8.2, 8.3, 8.4]
30+
php: [8.2, 8.3, 8.4, 8.5]
2931
laravel: [^11.0, ^12.0]
3032
stability: [prefer-lowest, prefer-stable]
3133
name: P=${{ matrix.php }} L=${{ matrix.laravel }} ${{ matrix.stability }}

0 commit comments

Comments
 (0)