Skip to content

Commit 3295ae7

Browse files
committed
Update run-tests.yml
1 parent 5e0e66d commit 3295ae7

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/run-tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ on:
55
branches:
66
- main
77
- dev-main
8+
- v3.x
89

910
jobs:
1011
test:
1112
runs-on: ubuntu-22.04
1213
timeout-minutes: 15
1314
strategy:
14-
fail-fast: true
15+
fail-fast: false
1516
matrix:
1617
php: [ 8.3, 8.4 ]
1718
laravel: [ 13.*, 12.*, 11.* ]
@@ -74,6 +75,14 @@ jobs:
7475
coverage: xdebug
7576
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo, mysql
7677

78+
- name: Allow Laravel 11 to resolve
79+
if: matrix.laravel == '11.*'
80+
# Laravel 11 is past its security window, so three advisories now cover
81+
# the whole branch with no 11.x release that clears them. Composer 2.9+
82+
# blocks advisory-affected versions during resolution, which makes the
83+
# row unrunnable rather than red. Report them instead of blocking.
84+
run: composer config --global policy.advisories.block false
85+
7786
- name: Install dependencies
7887
run: |
7988
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update

0 commit comments

Comments
 (0)